feat(efuse): Support Linux target

This commit is contained in:
Konstantin Kondrashov
2024-04-20 13:19:31 +03:00
parent e4fd0b7862
commit aed84fa818
41 changed files with 3465 additions and 87 deletions

View File

@@ -124,7 +124,7 @@ extern void vPortCancelThread( void *pxTaskToDelete );
* are always a full memory barrier. ISRs are emulated as signals
* which also imply a full memory barrier.
*
* Thus, only a compilier barrier is needed to prevent the compiler
* Thus, only a compiler barrier is needed to prevent the compiler
* reordering.
*/
#define portMEMORY_BARRIER() __asm volatile( "" ::: "memory" )
@@ -140,4 +140,6 @@ extern unsigned long ulPortGetRunTime( void );
// We need additional definitions for ESP-IDF code
#include "portmacro_idf.h"
void vPortSetStackWatchpoint(void *pxStackStart);
#endif /* PORTMACRO_H */