EdgeImpulse Syntiant github

Hello,
The link https://github.com/edgeimpulse/firmware-syntiant-tinyml is broken on the documentation page :https://docs.edgeimpulse.com/docs/on-your-syntiant-tinyml-board
thanks

Hi @Keja, thanks, it was taken offline at the request of Syntiant, something around IP. I’ll check with Syntiant to see if we can reinstate it!

1 Like

Hi @Keja,

The source code is now available on github: https://github.com/edgeimpulse/firmware-syntiant-tinyml
There’s currently a limitation on using the board as an external mic for data collection on Windows but we’re working on a fix.

Aurelien

2 Likes

Hi ! I followed this tutorial and downloaded the code source available on github. However, I have few errors while compiling the arduino file firmware-syntiant-tinyml.ino, I checked the versions of the libraries, they are the same as the ones mentioned on github. But some files can’t be found:
fatal error: Arduino_PMIC.h: No such file or directory Arduino_PMIC.h used in C:\Users\username\Documents\Arduino\libraries\NDP_utils\src/NDP_PMU.h
Same for “PluggableUSB.h” used in
C:\Users\username\Documents\Arduino\libraries\AudioUSB/AudioUSB.h
Anyone had this problem or similar issues to compile/upload the ino file ?
Thank you very much.

Hi @laetidrum,

Arduino_PMIC.h is part of the BQ24195 library, PluggableUSB.h is directly within the SAMD core package.

Can you run:

  • arduino-cli core list
    and check that the arduino:samd 1.8.9 is installed?

  • arduino-cli lib list
    and check that Arduino_BQ24195 0.9.1 is installed?

Aurelien

1 Like

Thank you Aurélien, I had an issue with the BQ24195 library, I downloaded the 0.9.1 version and it’s fixed.

1 Like