[nrf52]

Discussion and questions about boards that can run MicroPython but don't have a dedicated forum.
Target audience: Everyone interested in running MicroPython on other hardware.
Post Reply
msam
Posts: 4
Joined: Sat Aug 11, 2018 1:55 pm

[nrf52]

Post by msam » Sat Aug 11, 2018 2:13 pm

Hi all,
I am trying to develop using a custom nrf52 module.This module has no low frequency xtal.
It is possible to configure micropython to run on this specific hardware ?
I'm currently running micropython on Nordic pca10040 but would like to use non-Nordic hardware.

c45713
Posts: 51
Joined: Fri Dec 09, 2016 7:09 pm

Re: [nrf52]

Post by c45713 » Sat Aug 11, 2018 7:41 pm

I'm not sure of your use-case, but if you are thinking of running the SD without LF XTAL, you could try running it with RC. This can be achived by adding the

Code: Select all

CFLAGS += -DBLUETOOTH_LFCLK_RC 
in the mpconfigboard.mk For inspiration this is a similar configuration: https://github.com/micropython/micropyt ... igboard.mk

msam
Posts: 4
Joined: Sat Aug 11, 2018 1:55 pm

Re: [nrf52]

Post by msam » Fri Aug 17, 2018 5:23 pm

Hi c45713,

Your solution is correct:
https://github.com/micropython/micropyt ... f83557d710

Thanks

Post Reply