Posted on August 27, 2012 at 22:25Hi, I used uint8_t CSD_Tab[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; to initialize an array. But when I use IAR EWARM to watch the content in this array, the value is always unchanged. Any ideas? Thank you
Posted on August 27, 2012 at 15:40Hi, I am working on read,write to a SD card using SPI method on board STM32152L-Discovery board. Now I can create a folder, create a file, and read, write. But when I want to get the capacity of the SD card, no matt...
Posted on August 20, 2012 at 15:14Hi, When I use strcat to append a string to a destination string. It does not work. I did it like this. char *item_list = ''''; strcat(item_list,''hello''); When I set a break point and check the item_list, it is st...
Posted on August 21, 2012 at 00:05Please forgive me, I am new to this. Can you tell me how to allocate it to RAM? Using volatile? or malloc? Thank you.
Posted on August 20, 2012 at 18:14Thank you. It works now for your code. But if you change char string[16]; to char *string; it will not work. Any ideas about this? Thank you.