尽管我声明了 2 个变量并传递了 2 个变量,但我在函数调用错误中得到的参数太少
although i declare 2 variables and pass 2 variables i get too few arguments in function call error
我是 c 的初学者。我声明了 2 个变量并传递了 2 个变量。所以,我不明白,为什么会出现这个错误。
此外,当我从错误行代码中删除“0b”时,代码正在工作
问候。这是我的主要代码和功能
Message:Error[Pe165]: too few arguments in function call
void transmit(unsigned long data_word, unsigned char number_of_bits);
//i added this before i call the function
int main(void) {
WDTCTL = WDTPW | WDTHOLD; // Stop watchdog timer
init();
while (1) {
if ((P2IN & BTN1) == 0) //when button pressed
{
unsigned int j;
for (j = 0; j < 2; j++) {
transmit(0b010000100100011, 15); // ERROR OCCURS IN HERE
delay_ms(40);
}
while ((P2IN & BTN1) == 0);
}
}
}
// sending out bits, one by one, LSB first, maximum 16 bits (1 word)
void transmit(unsigned long data_word, unsigned char number_of_bits)
{
unsigned char i;
unsigned int mask;
for (i = 0; i < number_of_bits; i++) {
mask = (1 << i);
if ((data_word & mask) == 0) // bit '0'
{
transmitBit0();
} else // bit '1'
{
transmitBit1();
}
}
}
C 没有二进制文字。 0b...
不是有效的 C。一些编译器支持它作为扩展,但其他编译器不支持。
使用十六进制表示法。
我是 c 的初学者。我声明了 2 个变量并传递了 2 个变量。所以,我不明白,为什么会出现这个错误。 此外,当我从错误行代码中删除“0b”时,代码正在工作
问候。这是我的主要代码和功能
Message:Error[Pe165]: too few arguments in function call
void transmit(unsigned long data_word, unsigned char number_of_bits);
//i added this before i call the function
int main(void) {
WDTCTL = WDTPW | WDTHOLD; // Stop watchdog timer
init();
while (1) {
if ((P2IN & BTN1) == 0) //when button pressed
{
unsigned int j;
for (j = 0; j < 2; j++) {
transmit(0b010000100100011, 15); // ERROR OCCURS IN HERE
delay_ms(40);
}
while ((P2IN & BTN1) == 0);
}
}
}
// sending out bits, one by one, LSB first, maximum 16 bits (1 word)
void transmit(unsigned long data_word, unsigned char number_of_bits)
{
unsigned char i;
unsigned int mask;
for (i = 0; i < number_of_bits; i++) {
mask = (1 << i);
if ((data_word & mask) == 0) // bit '0'
{
transmitBit0();
} else // bit '1'
{
transmitBit1();
}
}
}
C 没有二进制文字。 0b...
不是有效的 C。一些编译器支持它作为扩展,但其他编译器不支持。
使用十六进制表示法。