• Regarding sbit
    hi all, I had created some libraries. Those libraries require some pin definitions. My question is, how do I extern sbit ??? Plz Help...
  • Regarding sbit
    hi all, I had created some libraries. Those libraries require some pin definitions. My question is, how do I extern sbit ??? Plz Help...
  • Sbit doest work
    Hello ALL I need to access some of the bit positions of the SFR. But each time i tried to declare a variable of the type sbit , i get error C141: syntax error near sbit. I have read the manual and...
  • Syntax? "sbit * ptr2sbit;"
    Is it possible using the C16x tools to create a variable that's a pointer to an sbit? I'm trying to find a way to allow a function in a custom library to not need to know where an I/O pin is until the...
  • usage of sbit
    < struct{ bit open; bit close; }door[2]; sbit door[0].open = P1^0; sbit door[0].close = P1^1; sbit door[1].open = P1^2; sbit door[1].close = P1^3; > Here when I compile/build...