hallo i have read your post on bootloader it was really a great post. I am new to firmware development and bootloader .As a part of my project i have to developed a bootloader for firmware updation .Atmel samd21 19a i have to do firmware updation using usb so first i have to check whether ther is data in usb buffer if so i should store it in a buffer which is then given to xml parser and then encrypted to base 64
but i stucked with first part i am not getting data from my usb buffer
if(usb_rx_buf != 0) //checking if data is available
memcpy(xmlBuf,usb_rx_buf,usb_rx_buf+1); //copying Usb data to xml Buffer
if(usb_rv_index >= sizeof(usb_rx_buf) )
usb_rv_index ++;
xmlReq = XMLparser_parse_str((uint8_t*)xmlBuf, &XMLParameter);
clearXmlBuffer = 1;
am not sure whether problem is with code please help me to find the fault and proceed