Skip to content

Commit 53deb6c

Browse files
committed
fix more warnings
1 parent a8be575 commit 53deb6c

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

hw/bsp/nuc100_120/FreeRTOSConfig/FreeRTOSConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
// skip if included from IAR assembler
4646
#ifndef __IASMARM__
47-
#include "NuMicro.h"
47+
#include "NUC100Series.h"
4848
#endif
4949

5050
/* Cortex-M0 port configuration. */

src/portable/nuvoton/nuc120/dcd_nuc120.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,19 @@ bool dcd_edpt_open(uint8_t rhport, tusb_desc_endpoint_t const * p_endpoint_desc)
275275
return true;
276276
}
277277

278+
bool dcd_edpt_iso_alloc(uint8_t rhport, uint8_t ep_addr, uint16_t largest_packet_size) {
279+
(void) rhport;
280+
(void) ep_addr;
281+
(void) largest_packet_size;
282+
return false; // TODO not implemented yet
283+
}
284+
285+
bool dcd_edpt_iso_activate(uint8_t rhport, tusb_desc_endpoint_t const *desc_ep) {
286+
(void) rhport;
287+
(void) desc_ep;
288+
return false; // TODO not implemented yet
289+
}
290+
278291
void dcd_edpt_close_all (uint8_t rhport)
279292
{
280293
(void) rhport;

0 commit comments

Comments
 (0)