complete porting to keil

- updated cgu
- require microlib for printf retarget
- cannot use fp enable option in keil (may require cmsis update)
This commit is contained in:
hathach
2013-09-10 12:22:35 +07:00
parent 9ed3e80582
commit 6916515612
4 changed files with 55 additions and 66 deletions

View File

@@ -53,6 +53,7 @@
#include "mouse_app.h"
#include "keyboard_app.h"
#include "cdc_serial_app.h"
#include "rndis_app.h"
#if defined(__CODE_RED)
#include <cr_section_macros.h>
@@ -121,6 +122,10 @@ int main(void)
#if TUSB_CFG_HOST_CDC
cdc_serial_app_init();
#if TUSB_CFG_HOST_CDC_RNDIS
rndis_app_init();
#endif
#endif
//------------- start OS scheduler (never return) -------------//

View File

@@ -64,5 +64,10 @@ void tusbh_cdc_rndis_unmounted_isr(uint8_t dev_addr)
// application tear-down
}
void rndis_app_init(void)
{
}
#endif