Gaurav-Aggarwal-AWS
Gaurav-Aggarwal-AWS
@ydhuang28 I think `taskENTER_CRITICAL` will not prevent `prvWin32LoggingThread` from accessing `xLogStreamBuffer` as this is a Windows Thread and not known to FreeRTOS Kernel. What is the reason for this change?...
Are you still facing this issue?
I see that Net_Recv task does call SOCKETS_Close: https://github.com/aws/amazon-freertos/blob/master/libraries/abstractions/platform/freertos/iot_network_freertos.c#L124 Is this what you are talking about? Thanks.
Thank your for this feature request. As you rightly pointed out, currently WebRTC protocol is not supported in FreeRTOS. We value your feedback as it helps us in determining the...
The earlier ISR implementation would look like the following: ```c /* Assembly Code. */ vISRWrapper: portSAVE_CONTEXT call vISRHandler portRESTORE_CONTEXT reti /* C Code. */ void vISRHandler( void ) { BaseType_t...
Thank you for investigating and sharing your findings. Let us know whatever you find. If you determine that it won't work, one other option is to provide a new wrapper...
@KeitaKashima Thank you for the detailed investigation and a very clear explanation. I understand the issue. What do you propose about solving this? What do you think about having a...
So you want to have a config `configREQUIRE_ASM_ISR_WRAPPER` which defaults to 0 and then define `portYIELD_FROM_ISR` like the following - ```c #if( configREQUIRE_ASM_ISR_WRAPPER == 1 ) #define portYIELD_FROM_ISR( xHigherPriorityTaskWoken )...
Thank you for your contribution @KeitaKashima !
Let me check and get back on this.