• Variable to string
    Hi all. i just want to know how can i convert variables to strings for eg-, unsigned char b[2]; unsigned char a; void main() { a=20; a=b; print_lcd(b); } i want to print the value to 'a...
  • Variable to string
    Hi all. i just want to know how can i convert variables to strings for eg-, unsigned char b[2]; unsigned char a; void main() { a=20; a=b; print_lcd(b); } i want to print the value to 'a...
  • how to send string or variables to USB port as a HID device?
    Hi, Please guide me or provide an example code for sending string or variables to USB port when SAM7X256 configured as a HID device. I seen Atmel's examples and worked with HID joystick-LED example...
  • how to send string or variables to USB port as a HID device?
    Hi, Please guide me or provide an example code for sending string or variables to USB port when SAM7X256 configured as a HID device. I seen Atmel's examples and worked with HID joystick-LED example...
  • String functions in relocatable code, string is fixed in memory
    I have the following code: strcat(tbuf,"\r\nSH B = "); My program memory model is small so I can re-locate the code in any sector. Unfortunately "\r\nSH B = " is fixed at an absolute address. I can...