我想在MPLAB XC8上获得一些问题,但我不能?

时间:2017-07-06 15:53:26

标签: c mplab xc8

我得到的功能是:

extern volatile unsigned char Temp       @ 0x036;
extern volatile __bit W       @ (((unsigned) &Temp)*8) + 4;

void get_bit(volatile unsigned char *reg, unsigned num) {
    W = (*reg & (1 << num));
}

主要功能是:

int main() {
    volatile unsigned char ch = 0b00001000;
    get_bit(&ch, 4);
}

当我编译这个块代码时,我得到一个错误(错误:表达式语法)。

我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

试试这段代码:

#include <stdio.h>

unsigned char get_bit(unsigned char reg, unsigned num) 
{
    return (reg & (1 << num));
}

unsigned char get_bit2(unsigned char reg, unsigned num) 
{
    return (reg & (1 << num))?1:0;
}

int main() 
{
    volatile unsigned char ch = 0b00001000;

    ch |= (1<<4);   // To set bit 4
    printf("%d\n",get_bit(ch, 4)); // If you try on a PC
    printf("%d\n",get_bit2(ch, 4)); // If you try on a PC

    ch &= (~(1<<4));   // To reset bit 4
    printf("%d\n",get_bit(ch, 4)); // If you try on a PC
    printf("%d\n",get_bit2(ch, 4)); // If you try on a PC


    return 0;
}