Search found 89 matches

by roland_vs
Thu Sep 27, 2018 7:45 am
Forum: General Discussion and Questions
Topic: [LEGATO] Running mpy on legato's linux
Replies: 2
Views: 2593

[LEGATO] Running mpy on legato's linux

Dear all,

Anyone has any experience in porting/compiling/running micropython on the legato version of linux?

Regards,

Roland
by roland_vs
Mon Aug 06, 2018 7:38 pm
Forum: General Discussion and Questions
Topic: [stm32l476] pyb.stop() mode question on side effects
Replies: 0
Views: 1320

[stm32l476] pyb.stop() mode question on side effects

Dear all, Before diving into a night of debugging with the STM32L476RG port: Are there instances that need to be reinitialised after the system is woken up from a pyb.stop()? Same measurement code: - using a loop that fires a measurement using pyb.ADC() every 2 seconds --> works - using rtc.wakeup(2...
by roland_vs
Sun Aug 05, 2018 11:24 pm
Forum: General Discussion and Questions
Topic: Turn utime.time() into unix time float
Replies: 2
Views: 2129

Turn utime.time() into unix time float

Turn utime.time() into unix time float

I would like to convert mpy utime.time() into the unix time that is a float().
by roland_vs
Mon Jul 02, 2018 8:05 pm
Forum: Other Boards
Topic: [pyb.ADCAll()] strange results
Replies: 3
Views: 2982

Re: [pyb.ADCAll()] strange results

The STM32F091RC also has self calibration, however I added it at line 256 to the adc.c, but need to check if there is a noticeable effect: #if defined(STM32F0) HAL_ADCEx_Calibration_Start(adch); #endif I also added a longer time constant at line 286(290) in the channel configuration, but I see that ...
by roland_vs
Mon Jul 02, 2018 1:49 pm
Forum: Other Boards
Topic: [pyb.ADCAll()] strange results
Replies: 3
Views: 2982

[pyb.ADCAll()] strange results

Hello, I'm trying to get the internal voltages of a STM chip and so far I see some odd behaviour: # setting it up from REPL import pyb pyb.ADCAll(12,0x70000) # enter through REPL adc.read_core_temp() adc.read_core_vbat() adc.read_core_vref() adc.read_vref() The results are not exactly what I would e...
by roland_vs
Thu Mar 15, 2018 10:52 pm
Forum: Hardware Projects
Topic: [PYBOARD] CTCSS TONES generation
Replies: 2
Views: 3309

Re: [PYBOARD] CTCSS TONES generation

@dhylands : again Dave thanks for the reply. I will try this. Indeed I realized that the prescaler was one higher.
I'm working on hooking up a PYBOARD to my transceiver to be able to access some radio repeaters over here.... and add some morse code for callsign identification.

Regards,

Roland
by roland_vs
Thu Mar 15, 2018 3:05 pm
Forum: Hardware Projects
Topic: [PYBOARD] CTCSS TONES generation
Replies: 2
Views: 3309

[PYBOARD] CTCSS TONES generation

Dear all, I would like to generate some odd frequencies with my PYBOARD like: CTCSS_FREQS =[67.0, 69.3, 71.9, 74.4, 77.0, 79.7, 82.5, 85.4, 88.5, 91.5, 94.8, 97.4, 100.0, 103.5, 107.2, 110.9, 114.8, 118.8, 123.0, 127.3, 131.8, 136.5, 141.3, 146.2, 151.4, 156.7, 162.2, 167.9, 173.8, 179.9, 186.2, 192...
by roland_vs
Wed Feb 14, 2018 11:35 am
Forum: General Discussion and Questions
Topic: [NEWS] Article on micropython
Replies: 4
Views: 4966

[NEWS] Article on micropython

Here some story about micropython...

Code: Select all

https://www.digikey.nl/en/articles/techzone/2017/sep/develop-real-time-mcu-based-applications-micropython
by roland_vs
Wed Jan 10, 2018 1:23 am
Forum: MicroPython pyboard
Topic: Support for hardware crypto?
Replies: 7
Views: 7363

Re: Support for hardware crypto?

Thanks!