-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
microC AI for ARM does not run with Clicker4 STM32F4 board #9
Comments
Correction, Flashing works and the code runs, but cant debug it. |
Hello @js1tr3 Thank you for the detailed bug report. I will leave the issue open and update you as soon as we have a fix available. Kind regards, |
Hello @js1tr3, We have a solution for you,
Regards |
Yup that Fixed it, Thankyou! |
Describe the bug
blink example from website does not run with MicroC AI for ARM
#include "board.h"
#include "drv_digital_out.h"
static digital_out_t led;
/// @brief Application init function.
void application_init ()
{
digital_out_init(&led, LED_1);
}
/// @brief Application task.
void application_task ()
{
digital_out_toggle(&led);
Delay_ms(1000);
}
/// @brief Application main function.
void main (void)
{
}
To Reproduce
Compile and download blink example
Run with microC AI arm (code does not execute no blink)
Run with GCC for arm code runs, LED blinks as expected
Information (please complete the following information):
Windows]
SDK version 2.11
Additional context
New update
The text was updated successfully, but these errors were encountered: