Search found 29 matches

by paulg
Sun Feb 09, 2020 6:25 pm
Forum: ESP32 boards
Topic: Unexpected behaviour when toggling GPIO pin
Replies: 5
Views: 3084

Re: Unexpected behaviour when toggling GPIO pin

@jimmo, thanks for the suggestions. Let's try again! I have posted the images in the correct order below together with the links. Hopefully one or the other will work. Normal waveform: https://drive.google.com/file/d/17ZYKrGoi87kLTZYoUwCLWymTWAWcbTO7/view?usp=sharing https://drive.google.com/file/d/...
by paulg
Wed Feb 05, 2020 6:54 pm
Forum: ESP32 boards
Topic: Unexpected behaviour when toggling GPIO pin
Replies: 5
Views: 3084

Re: Unexpected behaviour when toggling GPIO pin

@jimmo. This is unfortunate! I can recreate the problem by viewing the forum on an iPad that is not linked to my Dropbox account. Unlike the 'regulars' on this forum, I do not have permission to upload images to the forum, so I used my Dropbox Public folder thinking it would do the trick. Obviously ...
by paulg
Tue Feb 04, 2020 5:16 pm
Forum: ESP32 boards
Topic: Unexpected behaviour when toggling GPIO pin
Replies: 5
Views: 3084

Unexpected behaviour when toggling GPIO pin

I was curious how fast could a TinyPICO board toggle a GPIO pin? I flashed the following code into boot.py and main.py and attached a scope to pin 26. # boot.py: does nothing # test24.py: Basic loop timing test print('\nHello. This is test 24') from machine import Pin led2=Pin(26, Pin.OUT) while Tru...
by paulg
Mon Feb 03, 2020 11:48 am
Forum: General Discussion and Questions
Topic: Raising documentation issues
Replies: 10
Views: 6125

Re: Raising documentation issues

@stijn, yes, I think opening an Issue is the way to go. Thanks for the suggestion. You asked for an example of what I had in mind. This is for the MicroPython .mpy files page: First paragraph. You should mention that boot.mpy and main.mpy are not recognised by the runtime interpreter. If you want a ...
by paulg
Thu Jan 30, 2020 9:38 am
Forum: General Discussion and Questions
Topic: Raising documentation issues
Replies: 10
Views: 6125

Re: Raising documentation issues

Thanks for your reply jedie, but it seems you haven't understood what I want to do.

I do not want to change any code. I just want to offer some suggestions for improving the documentation and was asking how best to do this.
by paulg
Wed Jan 29, 2020 5:56 pm
Forum: General Discussion and Questions
Topic: Raising documentation issues
Replies: 10
Views: 6125

Re: Raising documentation issues

Guys, I followed your advice and failed miserably. I signed in to Github, went to micropython/micropython, selected the Pull request tab and clicked the New pull request button. I then got a Compare Changes screen with the Create pull request button greyed out. What do I do now? I don't want to chan...
by paulg
Thu Jan 23, 2020 8:45 pm
Forum: ESP32 boards
Topic: MicroPython Startup Time
Replies: 26
Views: 16025

Re: MicroPython Startup Time

Mike, thanks for the datapoint.

Am I right in thinking your board does not have any SPIRAM?
Do you have the startup time for non-frozen pre-compiled bytecode?
by paulg
Wed Jan 22, 2020 5:15 pm
Forum: General Discussion and Questions
Topic: Raising documentation issues
Replies: 10
Views: 6125

Re: Raising documentation issues

Thanks guys, I will follow your advice and raise a PR. Thanks to jimmo for providing an example.
by paulg
Mon Jan 20, 2020 5:56 pm
Forum: General Discussion and Questions
Topic: Raising documentation issues
Replies: 10
Views: 6125

Raising documentation issues

I see that the documentation has been updated over the holiday season and is much improved. Thanks guys!

However, I have noticed a few places where things are missing or more explanation would be useful.

Is there a single place where one can post suggestions for improvements to the documentation?
by paulg
Mon Jan 20, 2020 5:51 pm
Forum: ESP32 boards
Topic: Problem with boot.py
Replies: 2
Views: 2496

Re: Problem with boot.py

I am returning to this after taking a break over the holiday season. Thanks to @dhylands for your comments and suggestion. I have simplified the scenario to two files; boot.py as below and test24.py which is copied to main.py on the MicroPython board. # boot.py: does nothing # test24.py: Basic loop ...