Search found 647 matches

by Damien
Tue Feb 02, 2021 8:58 pm
Forum: Other Boards
Topic: MicroPython kills ST-LINK on STM32-H743ZI2?
Replies: 5
Views: 4691

Re: MicroPython kills ST-LINK on STM32-H743ZI2?

AKAIK there are a lot of users who have been and are using MicroPython on a NUCLEO_H743ZI board, without any issue. MicroPython doesn't do anything funny that would break ST-LINK. You can try and getting the board into ST bootloader mode and see if that helps. Use BOOT0 or execute machine.bootloader...
by Damien
Tue Feb 02, 2021 11:25 am
Forum: Other Boards
Topic: MicroPython kills ST-LINK on STM32-H743ZI2?
Replies: 5
Views: 4691

Re: MicroPython kills ST-LINK on STM32-H743ZI2?

It shouldn't really be possible to kill ST-LINK like that, but I have seen ST-LINK run into issues quite often. I'd suggest simply power cycling everything, even your PC. Also, the H7 MCU can be a bit of a beast to tame. If you have access to a more "friendly" MCU, like an F7 or F4 then I'd suggest ...
by Damien
Wed Sep 02, 2020 6:10 am
Forum: Announcements and News
Topic: MicroPython version 1.13 released
Replies: 3
Views: 46299

MicroPython version 1.13 released

After a long delay and a crazy year, the team is happy to announce the next release of MicroPython, v1.13! Source code and firmware can be downloaded from https://micropython.org/download/ The full change log can be found at https://micropython.org/resources/micropython-ChangeLog.txt A summary of th...
by Damien
Wed Apr 29, 2020 4:22 am
Forum: Newsletter archive
Topic: MicroPython Newsletter Issue 10
Replies: 2
Views: 38001

MicroPython Newsletter Issue 10

Dear community, It's been a while since the last newsletter and, although we are in unprecedented times, MicroPython continues to move forward, albeit a bit more slowly. Today is MicroPython's 7th Birthday: the 29th of April marks the date on which the first line of code was written, and it's now be...
by Damien
Thu Apr 23, 2020 6:17 am
Forum: ESP8266 boards
Topic: Can anyone decode this ESP8266 core dump? [SOLVED] please read!
Replies: 12
Views: 7969

Re: Can anyone decode this ESP8266 core dump? [SOLVED] please read!

why does pinging make this go away? Maybe because with wifi power saving now enabled (which is perhaps why it wasn't seen before), when the power saving feature runs it runs in a certain location in flash which aliases to the same cache location that pin_intr_handler was in, and evicts the pin_intr...
by Damien
Thu Apr 23, 2020 5:38 am
Forum: ESP8266 boards
Topic: Can anyone decode this ESP8266 core dump? [SOLVED] please read!
Replies: 12
Views: 7969

Re: Can anyone decode this ESP8266 core dump? [SOLVED] please read!

The fact that it crashes with an IllegalInstructionCause right at pin_intr_handler is very good evidence that the crash is because pin_intr_handler is in flash and it cannot read flash because the hard GPIO IRQ has interrupted an ongoing flash operation. Note that pin_intr_handler is called by pin_i...
by Damien
Thu Apr 16, 2020 3:17 am
Forum: Pyboard D-series
Topic: Problem with CAN after firmware update
Replies: 6
Views: 4474

Re: Problem with CAN after firmware update

I tried the latest PYBD-SF2 firmware, MicroPython v1.12-371-gf534b9976 on 2020-04-16; PYBD-SF2W with STM32F722IEK, and I am able to get the CAN bus working (communicating with a PYBv1.0 via CAN transceivers). The two main things I needed to do to get it working were: enable the PYBD 3.3V rail for th...
by Damien
Sun Apr 12, 2020 1:40 pm
Forum: Pyboard D-series
Topic: Problem with CAN after firmware update
Replies: 6
Views: 4474

Re: Problem with CAN after firmware update

Is it possible to tell standard vs extended frames from the ID? (eg extended IDs would be larger than 11 bits) The early version of the PYBD firmware was from this pull request on github: https://github.com/micropython/micropython/pull/4669 To build it (or any version) do the following (after instal...
by Damien
Thu Apr 09, 2020 1:17 pm
Forum: Pyboard D-series
Topic: Problem with CAN after firmware update
Replies: 6
Views: 4474

Re: Problem with CAN after firmware update

You can obtain the old firmware here: https://micropython.org/resources/firmw ... 1d3ca3.dfu

If that firmware works but the latest doesn't, then it should be possible to track down the bug and fix it.