Increase the MCLK frequency to 25MHz in the CCS MSP430X demo.

This commit is contained in:
Richard Barry 2011-01-12 12:32:33 +00:00
parent 7676ec0b66
commit 89669ae861

View file

@ -78,7 +78,7 @@
#define configUSE_PREEMPTION 1 #define configUSE_PREEMPTION 1
#define configUSE_IDLE_HOOK 1 #define configUSE_IDLE_HOOK 1
#define configUSE_TICK_HOOK 1 #define configUSE_TICK_HOOK 1
#define configCPU_CLOCK_HZ ( 16000000UL ) #define configCPU_CLOCK_HZ ( 25000000UL )
#define configTICK_RATE_HZ ( ( portTickType ) 1000 ) #define configTICK_RATE_HZ ( ( portTickType ) 1000 )
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 5 ) #define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 5 )
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 9 * 1024 ) ) #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 9 * 1024 ) )
@ -155,5 +155,5 @@ the timer has overflowed. */
ulCountValue |= ( unsigned long ) TA1R; \ ulCountValue |= ( unsigned long ) TA1R; \
TA1CTL |= MC__CONTINOUS; \ TA1CTL |= MC__CONTINOUS; \
} }
#endif /* FREERTOS_CONFIG_H */ #endif /*0*/