I am using FreeRTOS (blink LED) demo project for PSOC and modified the project to handle Application sleep mode using vApplicationIdleHook function. I was wondering is it possible to go to deep sleep mode in Idle state?
I have attached sample project.
I am new to freeRTOS so any sample project or documents
Solved! Go to Solution.
Calling CyPmSleep() to shut off the CPU during the idle task hook would be a better option. Calling deepsleep is not an option in this function because many tasks may be idling in a state where they do not need the CPU but still need the rest of the chip on.
Calling CyPmSleep() to shut off the CPU during the idle task hook would be a better option. Calling deepsleep is not an option in this function because many tasks may be idling in a state where they do not need the CPU but still need the rest of the chip on.
Does PSoC4 BLE support FreeRTOS with BLE stack?
I have ported FreeRTOS on PoSoC4 BLE, advertising and connection is ok,but service discorvery didn't work.
Can you help me?