Avinash
Avinash

Reputation: 11

the minimum clock frequency required to implement chirp on embedded

I am planning to implement chirp over nrf52840. Its max clock frequency is 64Mhz. what is the minimum clock frequency required to implement chirp on microcontroller? Will it work with 64Mhz core clock of nrf52840?

Upvotes: 0

Views: 73

Answers (1)

Damien
Damien

Reputation: 174

Chirp is effectively able to run at 64 MHz but be aware it is almost the lowest frequency at which it can run at the moment. This means that you won't be able to have any heavy processing running at the same time when Chirp is listening to receive some data.

If you want to do some quick prototyping, have a look at the Arduino Nano 33 BLE Sense which uses the nRF52480 and for which the SDK provide some code samples.

Upvotes: 3

Related Questions