• Global Class Decleration
    Hi, I am using uVision4 for LPC3250. I declare my class in my header file and define its functions in the corresponding cpp file. My question is this, how can I reach the object of this class...
  • Global & Static initialization problem
    Hi, I am developing a firmware for EZUSB FX based board. I am facing a small problem. I am not able to initialize a Global variable in my firmware. Even though I assign the global variable with 0 initial...
  • Problems with static and global variables
    I'm just starting to learn the ins and outs of the Infineon C167CS-40M and have come across a roadblock in my programming. Any time I try to use global or static variables in my ISR, the data in the...
  • Any preference for serial comm bus type?
    Any reason to chose one type of serial communications bus over another? I am looking at an Atmel part that has SPI bus. My first application is for uC to EEPROM or FLASH memory only. Future applications...
  • SBUF = mychar; TI = 0; // is there a preferred sequence?
    Is there a preferred sequence? SBUF = mychar; TI = 0; // or TI = 0; SBUF = mychar;