• atoi and int value into unsigned char
    Can i store a int into a char if result is less than 255 ? or i need to store only the lower byte? unsigned char mychar[10]; unsigned int intvalue; intvalue = 1000; intvalue = 1000 - 950;//value...
  • atoi and int value into unsigned char
    Can i store a int into a char if result is less than 255 ? or i need to store only the lower byte? unsigned char mychar[10]; unsigned int intvalue; intvalue = 1000; intvalue = 1000 - 950;//value...
  • hold variable value after __NVIC_SystemReset
    Hello All, I know this question have been asked so many times and solutions provided. But for me using LPC15xx and keil when ever I do a soft reset, the variable always gets initialised to Zero...
  • hold variable value after __NVIC_SystemReset
    Hello All, I know this question have been asked so many times and solutions provided. But for me using LPC15xx and keil when ever I do a soft reset, the variable always gets initialised to Zero...
  • How to write datum more than 128 byte in on-chip flash?
    hello everyone: I have a question. I have an const array ,and its length is 142 words(284 bytes).I locate the array to the adress 0xC1F000,and I will write the on-chip flash to renew the array in...