mbriday

Results 10 comments of mbriday

In fact, we just need to declare an extra OIL file, like that: ``` LIBRARY serial { PATH = "cortex/armv7em/stm32f303/lib"; CHEADER = "serial.h"; CFILE = "serial.c"; OILFILE = "serial.oil"; };...

Yes, we need to call the parser again. Will it be possible to extend gtl so that it can call the parser ?

> Hi. I'm using Precompiled binaries of goil from the origin README file (3.1.16). But I see you're using the older version: "semantic error 1: Goil version 3.1.12 required" >...

Hi, We're in the process of drafting documentation for STM32 boards. Even if the document was written with Cortex M4/M7 in mind, it should be able to serve as a...

Great, Could you make a pull request to integrate the port into the master branch? regards, Mik

Hi, It is available in the `stm32h743` branch [here](https://github.com/TrampolineRTOS/trampoline/blob/stm32h743/goil/templates/config/cortex-m/armv7em/setInterruptDefsOil.py). This is just an helper to port STM32 cortex-m targets. There are still some few parameters that are hard-coded. regards, Mik

Hi, It seems that you have broken the stack: * Is the stack size sufficient?: `STACKSIZE` parameter of the task. * maybe you should track the stack usage through the...

It doesn't seem like a question :/

Hi, Have you updated the link script for your specific target? It seems that there is a problem with memory locations. regards,

It seems that time_obj does not refer to a correct memory location. Valid RAM is most of the time 0x20xxxxxx, but pointers are in 0x0100xxxx… Maybe you have to track...