8 years, 7 months ago.

Error: The build system did not finish successfully. Error: -230

I'm attempting to compile a very simple program and getting the above error. I've tried compiling in both normal and betamode but still get the same issue. I've been trying it for several days (since it could be added as an mbed compiler).

Anyone else seen this and if so what did you do to fix it?

Here's the program I'm attempting to build (the compiler can be selected by adding the DISCO-F746NG platform to your list of registered platforms):

  1. include "mbed.h"

DigitalOut myled(LED1);

int main() { while(1) { myled = 1; wait(0.2); myled = 0; wait(0.2); } }

Question relating to:

The STM32F746G-DISCO discovery board (32F746GDISCOVERY) is a complete demonstration and development platform for STMicroelectronics ARM® Cortex®-M7 core-based STM32F746NGH6 microcontroller.

What program are you building?

posted by Sam Grove 11 Sep 2015

Is this enabled on Mbed yet? I understand its still in test condition.

posted by Paul Staron 11 Sep 2015

Same here, even for an empty main function. Also can't export a gcc project, really disappointed :(

posted by Artur Pacholec 11 Sep 2015

This platform is still not supported with the online tools and not part of the mbed library release. It should be quite soon though.

posted by Sam Grove 13 Sep 2015

1 Answer

8 years, 7 months ago.

Working now, well it compiles anyway.

Would you share a link to an example that does compile? I still get an error.

posted by David Queen 25 Sep 2015