robertobucher commented on code in PR #12814:
URL: https://github.com/apache/nuttx/pull/12814#discussion_r1699492145
##########
boards/arm/stm32h7/nucleo-h745zi/src/stm32_bringup.c:
##########
@@ -227,3 +231,13 @@ int stm32_bringup(void)
return OK;
}
+
+#ifdef CONFIG_SYSTEMTICK_HOOK
+
+sem_t g_waitsem;
Review Comment:
Semaphore will be consumed in pysimCoder
File: nuttx_main_timehook.c
```
[...]
extern sem_t g_waitsem;
[...]
while(!end){
while (sem_wait(&g_waitsem) >= 0) {
if(nTick==0){
[...]
....
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]