Search found 8 matches

by ExDes
Fri Dec 10, 2021 7:39 pm
Forum: Programs, Libraries and Tools
Topic: micropython_eeprom Library - OSError 19 mounting external FLASH
Replies: 1
Views: 4008

micropython_eeprom Library - OSError 19 mounting external FLASH

Hello all, I am attempting to mount a set of three S25FL128L FLASH devices on a NUCLEO-F767ZI board using the library micropython_eeprom . All seems to go well until I attempt to mount the devices, and then receive an error code 19, "No such device". Code as follows: >>> import os >>> from machine i...
by ExDes
Wed Jul 21, 2021 3:25 pm
Forum: Other Boards
Topic: [NUCLEO-H743ZI] - `RAM_D2' overflowed by 805,289,984 bytes error - Please help!
Replies: 6
Views: 3818

[Solved] Re: [NUCLEO-H743ZI] - `RAM_D2' overflowed by 805,289,984 bytes error - Please help!

So I finally got this working. You were right - it was the GCC version that was causing problems. I am running Linux Mint 19.3. The repositories point to the version 6.3 which was installed using the apt-get install for the factory PPAs... It seems that .debs aren't available for versions past 9.2, ...
by ExDes
Tue Jul 20, 2021 12:49 am
Forum: Other Boards
Topic: [NUCLEO-H743ZI] - `RAM_D2' overflowed by 805,289,984 bytes error - Please help!
Replies: 6
Views: 3818

Re: [NUCLEO-H743ZI] - `RAM_D2' overflowed by 805,289,984 bytes error - Please help!

I seem to have a different version of the compiler:

Code: Select all

$ arm-none-eabi-gcc --version
arm-none-eabi-gcc (15:6.3.1+svn253039-1build1) 6.3.1 20170620
Is this a likely source of the problem?
by ExDes
Mon Jul 19, 2021 4:20 pm
Forum: Other Boards
Topic: [NUCLEO-H743ZI] - `RAM_D2' overflowed by 805,289,984 bytes error - Please help!
Replies: 6
Views: 3818

Re: [NUCLEO-H743ZI] - `RAM_D2' overflowed by 805,289,984 bytes error - Please help!

Thank you for the reply jimmo. I also used the latest code from github and followed the instructions exactly. The build worked fine for the NUCLEO-F767, but I keep getting this error with the NUCLEO-H743. I used the default compiler specified, arm-none-eabi-gcc . The steps I used are as follows: git...
by ExDes
Fri Jul 16, 2021 8:17 pm
Forum: Other Boards
Topic: [NUCLEO-H743ZI] - `RAM_D2' overflowed by 805,289,984 bytes error - Please help!
Replies: 6
Views: 3818

[NUCLEO-H743ZI] - `RAM_D2' overflowed by 805,289,984 bytes error - Please help!

I followed the instructions provided in the readme file of the repository. All went well until I hit the linker. I received this message: LINK build-NUCLEO_H743ZI/firmware.elf arm-none-eabi-ld: build-NUCLEO_H743ZI/firmware.elf section `.eth_buffers' will not fit in region `RAM_D2' arm-none-eabi-ld: ...
by ExDes
Sun May 09, 2021 4:46 pm
Forum: Programs, Libraries and Tools
Topic: [microWebSrv2] ValueError: can't perform relative import
Replies: 0
Views: 2464

[microWebSrv2] ValueError: can't perform relative import

Hello fellow micropythoners, I am attempting to incorporate the current microWebSrv2 module into the latest micropython build. We are using the NUCLEO-F767ZI board. Threading has been enabled in /ports/stm32/mpconfigport.py . Module microWebSrv2 has been frozen into the build by including the follow...
by ExDes
Mon May 03, 2021 2:58 pm
Forum: Other Boards
Topic: [STM32H750VBT6 ] firmware.elf section `.eth_buffers' will not fit in region `RAM_D2'
Replies: 2
Views: 3352

Re: [STM32H750VBT6 ] firmware.elf section `.eth_buffers' will not fit in region `RAM_D2'

Did you ever find a solution to this problem? I did successfully build for the NUCLEO-F767ZI and load running code, but when attempting to build for the NUCLEO-H743ZI I ran into a similar problem. The RAM_D2 overflowed by 805289984 bytes and was also unable to fit the .eth_buffers. My request for he...
by ExDes
Fri Apr 30, 2021 3:31 pm
Forum: Other Boards
Topic: Error building for NUCLEO-H743ZI2 board
Replies: 0
Views: 2805

Error building for NUCLEO-H743ZI2 board

Greetings, After a substantial hiatus from software development I am attempting to implement the STM32H743 for a new application. Micropython seems to be an excellent option and hoped to test this on the NUCLEO-H743ZI2 board. I followed the instructions provided in the readme file of the repository....