• declaration may not appear after executable statement
    #include<lpc214x.h> void init(void); void delay_ms(int); int main(void) { int i,j,k,A,B,C; IODIR0=0; A=0; B=IOPIN0; C=B^A; unsigned char c[]="I L*** NITC \n"; unsigned char r[]="I L*** EMBEDDED SYSTEMS...
  • declaration may not appear after executable statement
    #include<lpc214x.h> void init(void); void delay_ms(int); int main(void) { int i,j,k,A,B,C; IODIR0=0; A=0; B=IOPIN0; C=B^A; unsigned char c[]="I L*** NITC \n"; unsigned char r[]="I L*** EMBEDDED SYSTEMS...
  • After resetting sam7S256 TDMI using RTSC , uP is slow, the pll does not appear to lock.
    This is a bootloader application , when app "okays" an upgrade i want to restart the micro, this brings me back into the bootloader. So the hardware is reconfigured with same settings. This is a know...
  • After resetting sam7S256 TDMI using RTSC , uP is slow, the pll does not appear to lock.
    This is a bootloader application , when app "okays" an upgrade i want to restart the micro, this brings me back into the bootloader. So the hardware is reconfigured with same settings. This is a know...
  • printf statement not working after putchar statement is used.
    Hi All I am using following putchar routine. void srl_putchar(unsigned char send) { SBUF = send; while (!TI); TI = 0; } after using above routine to transfer a character via serial port i continued...