This commit is contained in:
hathach 2020-09-01 17:12:31 +07:00
parent be708bb8a4
commit f4e3c6fd8e
3 changed files with 11 additions and 11 deletions

View File

@ -75,7 +75,7 @@ CFG_TUSB_MEM_SECTION static char serial_in_buffer[64] = { 0 };
void tuh_mount_cb(uint8_t dev_addr) void tuh_mount_cb(uint8_t dev_addr)
{ {
// application set-up // application set-up
printf("\na device with address %d is mounted\n", dev_addr); printf("A device with address %d is mounted\r\n", dev_addr);
tuh_cdc_receive(dev_addr, serial_in_buffer, sizeof(serial_in_buffer), true); // schedule first transfer tuh_cdc_receive(dev_addr, serial_in_buffer, sizeof(serial_in_buffer), true); // schedule first transfer
} }
@ -83,7 +83,7 @@ void tuh_mount_cb(uint8_t dev_addr)
void tuh_umount_cb(uint8_t dev_addr) void tuh_umount_cb(uint8_t dev_addr)
{ {
// application tear-down // application tear-down
printf("\na device with address %d is unmounted \n", dev_addr); printf("A device with address %d is unmounted \r\n", dev_addr);
} }
// invoked ISR context // invoked ISR context
@ -187,14 +187,14 @@ void print_greeting(void)
[OPT_OS_FREERTOS] = "FreeRTOS", [OPT_OS_FREERTOS] = "FreeRTOS",
}; };
printf("\n--------------------------------------------------------------------\n"); printf("--------------------------------------------------------------------\r\n");
printf("- Host example\n"); printf("- Host example\r\n");
printf("- if you find any bugs or get any questions, feel free to file an\n"); printf("- if you find any bugs or get any questions, feel free to file an\r\n");
printf("- issue at https://github.com/hathach/tinyusb\n"); printf("- issue at https://github.com/hathach/tinyusb\r\n");
printf("--------------------------------------------------------------------\n\n"); printf("--------------------------------------------------------------------\r\n\r\n");
printf("This Host demo is configured to support:\r\n"); printf("This Host demo is configured to support:\r\n");
printf(" - RTOS = %s\n", rtos_name[CFG_TUSB_OS]); printf(" - RTOS = %s\r\n", rtos_name[CFG_TUSB_OS]);
#if CFG_TUH_CDC #if CFG_TUH_CDC
printf(" - Communication Device Class\r\n"); printf(" - Communication Device Class\r\n");

View File

@ -5,7 +5,7 @@ CFLAGS += \
-mcpu=cortex-m3 \ -mcpu=cortex-m3 \
-nostdlib \ -nostdlib \
-DCORE_M3 \ -DCORE_M3 \
-D__USE_LPCOPEN -D__USE_LPCOPEN \
-DCFG_TUSB_MCU=OPT_MCU_LPC18XX \ -DCFG_TUSB_MCU=OPT_MCU_LPC18XX \
# mcu driver cause following warnings # mcu driver cause following warnings
@ -37,7 +37,7 @@ FREERTOS_PORT = ARM_CM3
# For flash-jlink target # For flash-jlink target
JLINK_DEVICE = LPC1857 JLINK_DEVICE = LPC1857
JLINK_IF = jtag JLINK_IF = swd
# flash using jlink # flash using jlink
flash: flash-jlink flash: flash-jlink

View File

@ -43,7 +43,7 @@
#define CFG_TUSB_MCU OPT_MCU_NRF5X #define CFG_TUSB_MCU OPT_MCU_NRF5X
#endif #endif
#define CFG_TUSB_RHPORT0_MODE (OPT_MODE_DEVICE | OPT_MODE_HIGH_SPEED) #define CFG_TUSB_RHPORT0_MODE (OPT_MODE_DEVICE | OPT_MODE_HOST | OPT_MODE_HIGH_SPEED)
#define CFG_TUSB_OS OPT_OS_NONE #define CFG_TUSB_OS OPT_OS_NONE
// CFG_TUSB_DEBUG is defined by compiler in DEBUG build // CFG_TUSB_DEBUG is defined by compiler in DEBUG build