Search found 1 match

by terallytension
Thu Aug 01, 2024 8:57 am
Forum: General Discussion
Topic: Implementing period sleep and wake up in qf_ssi_ai_app Project
Replies: 4
Views: 53131

Re: Implementing period sleep and wake up in qf_ssi_ai_app Project

To achieve a 10-minute wake-up timer for audio recognition on the QuickFeather board in the `qf_ssi_ai_app` project: 1. **Configure Timer**: Set up a hardware timer to geometry dash trigger every 10 minutes. ```c void timer_callback(void) { wake_flag = 1; } void setup_timer(void) { hal_timer_start(6...