Error during first compile of downloaded Tracker Edge firmware

I downloaded Tracker Edge firmware from gitHub and did everything as described here:
When I compile the code I get this error:
/system/inc/system_version.h:341:19: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘attribute’ before ‘=’ token
uint16_t size = sizeof(SystemVersionInfo);

Can somebody help around this issue? It is really important to make it work. Thanks.

Did you use Particle: Configure Project for Device and select Tracker and 3.3.0? I just realized that’s missing from the automatic instructions, but is included in the manual instructions.

Were there any errors in addition to that one error?

What version of Device OS are you targeting?

I did use Particle: Configure Project for Device but my DeviceOS is 3.2.0.
Realted to errors, just this:
from /Users/…/Documents/particle/tracker-edge/lib/memfault/src/memfault-firmware-sdk/components/core/src/memfault_batched_events.c:11:
…/system/inc/system_version.h:341:19: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘attribute’ before ‘=’ token
341 | uint16_t size = sizeof(SystemVersionInfo);
| ^
make[3]: *** […/build/target/user/platform-26-m/tracker-edge/memfault/src/memfault-firmware-sdk/components/core/src/memfault_batched_events.o] Error 1
make[2]: *** [user] Error 2
make[1]: *** [modules/tracker/user-part] Error 2
make: *** [compile-user] Error 2

I would start by trying 3.3.0. Tracker Edge v18 can’t be build using 3.2.0.

I did it. But now I get the errors:

error: ‘hal_device_hw_info’ was not declared in this scope
69 | hal_device_hw_info info;

src/EdgePlatform.cpp:73:29: error: ‘info’ was not declared in this scope
73 | hal_get_device_hw_info(&info, &res);

I would use the actual Tracker Edge v18 release, not the head version.

cd tracker-edge
git submodule init
git checkout release/v18
git submodule update --recursive
1 Like

thank you :slightly_smiling_face: it compiled successfully

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.