Skip to content

Commit c3f0544

Browse files
committed
m33 support
-added a macro ifdef to check for ESP32 - to only set loop task stack size when needed. -added compiled binaries for m33f
1 parent c6aad08 commit c3f0544

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/SparkFun_BMV080_Arduino_Library.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626

2727
// The BMV080 Bosch API requires a larger than usual stack size
2828
// In particular, bmv080_serve_interrupt is the culprit.
29+
// If we are an ESP32 architecture, then we need to increase the loop stack size
30+
// to 60KB. This is because the ESP32 has a 32KB stack size by default.
31+
#if defined(ESP32)
2932
SET_LOOP_TASK_STACK_SIZE(60 * 1024); // 60KB
33+
#endif
3034

3135
class SparkFunBMV080I2C : public sfeBmv080
3236
{

src/cortex-m33/libbmv080.a

78.2 KB
Binary file not shown.

src/cortex-m33/libpostProcessor.a

70.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)