Skip to content
Snippets Groups Projects
Commit 5f849abc authored by Cristian Maglie's avatar Cristian Maglie Committed by Cristian Maglie
Browse files

Fixed some warnings

parent 1a4e8854
No related branches found
No related tags found
No related merge requests found
......@@ -633,7 +633,7 @@ void SERCOM::initClockNVIC( void )
clockId = GCM_SERCOM4_CORE;
IdNvic = SERCOM4_IRQn;
}
else if(sercom == SERCOM5)
else // if(sercom == SERCOM5)
{
clockId = GCM_SERCOM5_CORE;
IdNvic = SERCOM5_IRQn;
......
......@@ -105,7 +105,7 @@ uint32_t USBD_Available(uint32_t ep)
// Return number of bytes read
uint32_t USBD_Recv(uint32_t ep, void* d, uint32_t len)
{
if (!_usbConfiguration || len < 0)
if (!_usbConfiguration)
return -1;
uint32_t n = UDD_FifoByteCount(ep);
......@@ -200,8 +200,8 @@ uint32_t USBD_RecvControl(void* d, uint32_t len)
if (read > len)
read = len;
UDD_Recv(EP0, &buffer);
while (!udd_is_OUT_transf_cplt(EP0));
for (int i=0; i<read; i++) {
while (!udd_is_OUT_transf_cplt(EP0));
for (uint32_t i=0; i<read; i++) {
data[i] = buffer[i];
}
udd_OUT_transfer_allowed(EP0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment