Search found 7 matches

by spenderIng
Thu Jul 04, 2024 9:54 am
Forum: ESP-IDF
Topic: Generate the preprocessor output of gcc
Replies: 2
Views: 1081

Re: Generate the preprocessor output of gcc

Hello MicroController,
thanks for the help. It works.
Regards
by spenderIng
Tue Jul 02, 2024 4:25 pm
Forum: ESP-IDF
Topic: Generate the preprocessor output of gcc
Replies: 2
Views: 1081

Generate the preprocessor output of gcc

Hello,
how can I see the output of preprocessor using idf.py? To be more precise, I would like to see the output of the command

Code: Select all

gcc -E hello.c
.

Thanks and regards
by spenderIng
Fri Apr 19, 2024 9:25 am
Forum: ESP-IDF
Topic: ESP32S3: RTC main counter interrupt while awake
Replies: 9
Views: 3975

Re: ESP32S3: RTC main counter interrupt while awake

Respected ESP_Sprite,
thank you for the hint. I could successfully use the method that you described. A disadvantage of this method is that I have to use two timers. The software complexity increases a bit. The advantage is that it works! How can I mark your answer as the accepted?
by spenderIng
Thu Apr 04, 2024 9:47 am
Forum: ESP-IDF
Topic: ESP32S3: RTC main counter interrupt while awake
Replies: 9
Views: 3975

Re: ESP32S3: RTC main counter interrupt while awake

Greetings ESP_Sprite, thank you for the reply. The reason is, that I would like to set multiple `software timers` that track time irrespective of the sleep mode. This is possible only by the RTC timer/ counter. No other timer is working in the deep sleep mode. The timers are successfully set and the...
by spenderIng
Thu Mar 28, 2024 12:55 pm
Forum: ESP-IDF
Topic: ESP32S3: RTC main counter interrupt while awake
Replies: 9
Views: 3975

Re: ESP32S3: RTC main counter interrupt while awake

Hello ESP_Sprite, because of repeated upload problems, I paste the code here. To use the code: Copy the directory esp-idf/examples/get-started/hello_world to some location locally on your computer. Open the file main/hello_world_main.c. Delete all the contents of the file. Copy the code below Paste ...
by spenderIng
Mon Mar 11, 2024 2:04 pm
Forum: ESP-IDF
Topic: ESP32S3: RTC main counter interrupt while awake
Replies: 9
Views: 3975

Re: ESP32S3: RTC main counter interrupt while awake

Please find attached the source code that this post relates to. Thank you.
by spenderIng
Fri Mar 08, 2024 2:15 pm
Forum: ESP-IDF
Topic: ESP32S3: RTC main counter interrupt while awake
Replies: 9
Views: 3975

ESP32S3: RTC main counter interrupt while awake

Hello, I have a problem on ESP32S3. Statement Write a program to receive an interrupt from the RTC main timer while ESP32S3 is awake whenever the main counter reaches some finite value. While asleep the ESP32S3 wakes up at the alarm time that is set using the functions esp_sleep_enable_timer_wakeup(...