Search found 9 matches

by nohc
Thu Oct 29, 2020 2:58 am
Forum: Development of MicroPython
Topic: Samd21 build help - NVIC_SystemReset();
Replies: 3
Views: 3333

Re: Samd21 build help - NVIC_SystemReset();

My ultimate goal here was to get a working firmware on a samd21 board that supports sleep mode and interrupts. I was under the impression that the samd MP ports do not work without additional information and somehow in my though process I figured I could borrow the CircuitPython files as a starting ...
by nohc
Thu Sep 17, 2020 2:38 am
Forum: Development of MicroPython
Topic: Samd21 build help - NVIC_SystemReset();
Replies: 3
Views: 3333

Samd21 build help - NVIC_SystemReset();

Hello, I am trying to do an Arduino Zero compatible build and I am using the board config files from CircuitPython's build. There are some hangups in modmachine.c that I have gotten past. I could not find the sam.h file that is imported and I have not found an example so I created an empty sam.h fil...
by nohc
Mon Sep 14, 2020 1:05 am
Forum: Pyboard D-series
Topic: Pyboard D sleep current consumption
Replies: 2
Views: 2840

Re: Pyboard D sleep current consumption

Cool, I may grab one to mess with then. Thanks for you work on testing and replying to me.
by nohc
Sun Sep 13, 2020 3:36 am
Forum: Pyboard D-series
Topic: Pyboard D sleep current consumption
Replies: 2
Views: 2840

Pyboard D sleep current consumption

Hello, Does anyone have the lowest current consumption on a battery for any of the pyboard d models? I think the lowest I have read is 50ua. Also, any limitations you have found from a lowpower perspective are much appreciated. I am trying to see if the d boards would be a good fit for my project. M...
by nohc
Mon Sep 07, 2020 4:04 pm
Forum: General Discussion and Questions
Topic: MPY DeepSleep and power consumption
Replies: 15
Views: 7792

Re: MPY DeepSleep and power consumption

I only tested the ones linked below and they work great so far. I ended up ordering a bunch of the feather style as I plan on making some custom sensor shields and its easy to find feather templates to work from. The boards have worked as advertised so I have no reason to believe the one you ordered...
by nohc
Mon Sep 07, 2020 1:45 am
Forum: General Discussion and Questions
Topic: MPY DeepSleep and power consumption
Replies: 15
Views: 7792

Re: MPY DeepSleep and power consumption

I like the TinyPICO. I am also messing with some of the esp32 boards on here https://www.ezsbc.com/ and getting down to 10ua in deepsleep.
by nohc
Fri Sep 04, 2020 8:26 pm
Forum: ESP32 boards
Topic: Stuck porting a driver over from Circuitpython -RFM69
Replies: 3
Views: 2923

Re: Stuck porting a driver over from Circuitpython -RFM69

Turned out to be a timing issue and one of the CircuitPython guys helped me out. The ports are working and can be found here. I will keep working on the RFM69 one and may try to eventually get it compatible with the lowpowerlab library. Thanks

https://github.com/nohcpy
by nohc
Sun Aug 23, 2020 3:21 am
Forum: ESP32 boards
Topic: Stuck porting a driver over from Circuitpython -RFM69
Replies: 3
Views: 2923

Re: Stuck porting a driver over from Circuitpython -RFM69

Looks like its not related to the syntax reading and writing via SPI. I tried this same SPI read/write logic on the RFM9x circuitpython library and that works 100%. I may just run with lora radios at this point anyways.
by nohc
Sat Aug 22, 2020 12:42 am
Forum: ESP32 boards
Topic: Stuck porting a driver over from Circuitpython -RFM69
Replies: 3
Views: 2923

Stuck porting a driver over from Circuitpython -RFM69

Hello, I am trying to port a driver for the RFM69x modules that is currently written in Circuitpython and I am very close. All of the TX functionality is working as it should but I am having issues receiving packets correctly. The radio module uses SPI and I have traced down the where there is an is...