reduce delay after reset to 20ms
correct freeRTOS configCPU_CLOCK_HZ to correct M4 mcu clock
This commit is contained in:
@@ -289,8 +289,8 @@ tusb_error_t enumeration_body_subtask(void)
|
|||||||
usbh_devices[0].state = TUSB_DEVICE_STATE_ADDRESSED;
|
usbh_devices[0].state = TUSB_DEVICE_STATE_ADDRESSED;
|
||||||
|
|
||||||
#ifndef _TEST_
|
#ifndef _TEST_
|
||||||
// TODO hack delay 100 ms for slow device (use retry on the 1st xfer instead later)
|
// TODO hack delay 20 ms for slow device (use retry on the 1st xfer instead later)
|
||||||
osal_task_delay(100);
|
osal_task_delay(20);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//------------- Get first 8 bytes of device descriptor to get Control Endpoint Size -------------//
|
//------------- Get first 8 bytes of device descriptor to get Control Endpoint Size -------------//
|
||||||
|
|||||||
5
vendor/freertos/lpc43xx_m4_FreeRTOSConfig.h
vendored
5
vendor/freertos/lpc43xx_m4_FreeRTOSConfig.h
vendored
@@ -55,9 +55,9 @@
|
|||||||
#ifndef FREERTOS_CONFIG_H
|
#ifndef FREERTOS_CONFIG_H
|
||||||
#define FREERTOS_CONFIG_H
|
#define FREERTOS_CONFIG_H
|
||||||
|
|
||||||
//#include "hal/hal.h"
|
|
||||||
#include "LPC43xx.h"
|
#include "LPC43xx.h"
|
||||||
#include "core_cm4.h"
|
#include "core_cm4.h"
|
||||||
|
#include "lpc43xx_cgu.h"
|
||||||
|
|
||||||
/*-----------------------------------------------------------
|
/*-----------------------------------------------------------
|
||||||
* Application specific definitions.
|
* Application specific definitions.
|
||||||
@@ -74,7 +74,8 @@
|
|||||||
#define configUSE_PREEMPTION 1
|
#define configUSE_PREEMPTION 1
|
||||||
#define configUSE_IDLE_HOOK 1
|
#define configUSE_IDLE_HOOK 1
|
||||||
#define configUSE_TICK_HOOK 0
|
#define configUSE_TICK_HOOK 0
|
||||||
#define configCPU_CLOCK_HZ ( SystemCoreClock )
|
//#define configCPU_CLOCK_HZ ( SystemCoreClock )
|
||||||
|
#define configCPU_CLOCK_HZ ( CGU_GetPCLKFrequency(CGU_PERIPHERAL_M4CORE))
|
||||||
#define configTICK_RATE_HZ ( ( portTickType ) 1000 )
|
#define configTICK_RATE_HZ ( ( portTickType ) 1000 )
|
||||||
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 16 )
|
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 16 )
|
||||||
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 128 )
|
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 128 )
|
||||||
|
|||||||
Reference in New Issue
Block a user