Search found 135 matches

by chuckbook
Sat Oct 27, 2018 4:15 pm
Forum: MicroPython pyboard
Topic: Camera integration
Replies: 13
Views: 16741

Re: Camera integration

Don't worry to use high UART baudrates on pyboard. Most of the time 115200 baud are used. We also successfully used baudrates of up to 921000.
by chuckbook
Fri Oct 19, 2018 11:41 am
Forum: Other Boards
Topic: persistent memory?!?
Replies: 6
Views: 4237

Re: persistent memory?!?

On a pyboard there are 4Kbytes of NVRAM. It survives a power cycle as long as VBACK is active.
by chuckbook
Thu Aug 30, 2018 9:49 am
Forum: MicroPython pyboard
Topic: SPI initialization not working
Replies: 2
Views: 2101

Re: SPI initialization not working

Note that STM32 SPI cannot provide all baudrates. In fact if a specific baudrate is requested, MPY selects the available baudrate <= requested baudrate. Also note that available baudrates vary with SYSCLK frequency. All of the above is only true for HW SPI, SW SPI might give finer granularity at low...
by chuckbook
Sat Aug 25, 2018 4:07 pm
Forum: General Discussion and Questions
Topic: Calculation benchmark of micropython in different hardware
Replies: 14
Views: 8980

Re: Calculation benchmark of micropython in different hardware

pythoncoder wrote:
Sat Aug 25, 2018 4:23 am
chuckbook wrote:
Fri Aug 24, 2018 11:10 am
...without warranty: 216M, 1.547, 1.721, 2.839, 4.116 :-)
Impressive figures.

But to quote from Basil Fawlty
where did you get that?
;)
To quote from Dr. Franklyn
I would love to tell you, but then, of course...
;-)
by chuckbook
Fri Aug 24, 2018 11:10 am
Forum: General Discussion and Questions
Topic: Calculation benchmark of micropython in different hardware
Replies: 14
Views: 8980

Re: Calculation benchmark of micropython in different hardware

pythoncoder wrote:
Fri Aug 24, 2018 7:40 am
Interesting and informative information. It will be interesting to see how the forthcoming Pyboard D-series compares.
without warranty: 216M, 1.547, 1.721, 2.839, 4.116 :-)
by chuckbook
Wed Jul 25, 2018 8:03 am
Forum: General Discussion and Questions
Topic: Pyboard + SSD1306
Replies: 26
Views: 17973

Re: Pyboard + SSD1306

Just use:

Code: Select all

i2c.writeto(0x70, b'\x01')
instead of:

Code: Select all

i2c.writeto(0x70, 0x01)
by chuckbook
Tue Jul 17, 2018 4:44 pm
Forum: Newsletter archive
Topic: MicroPython Newsletter Issue 3
Replies: 3
Views: 39037

Re: MicroPython Newsletter Issue 3

Thanks for sharing this information. I finally figured out why we chose MicroPython!
Take my respect!
by chuckbook
Tue Jul 03, 2018 11:42 am
Forum: Other Boards
Topic: [pyb.ADCAll()] strange results
Replies: 3
Views: 2982

Re: [pyb.ADCAll()] strange results

Self calibration for F4 & F7 means evaluation of Vref by means of factory calibration parameters for temp sensor and internal band-gap reference. It has nothing to do with ADC calibration.
by chuckbook
Mon Jul 02, 2018 4:46 pm
Forum: Other Boards
Topic: [pyb.ADCAll()] strange results
Replies: 3
Views: 2982

Re: [pyb.ADCAll()] strange results

Be aware of the fact that so far only a limited number of MCUs (F405, F411, F7xx) are supported when it comes to internal voltage readout and self calibration.
by chuckbook
Mon Jun 18, 2018 8:00 am
Forum: General Discussion and Questions
Topic: uctypes and spi
Replies: 5
Views: 3554

Re: uctypes and spi

CCM RAM is not accessible via DMA.
DocID018909 Rev 10, 2.1, pp 59