Search found 41 matches

by steve64
Tue Apr 02, 2019 7:06 am
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: HCFiler for Cortex M7
Replies: 4
Views: 23035

Re: HCFiler for Cortex M7

It's not clear to me how the files written by HCFiler on a Nucleo board are then read back from a Windows PC.
Should I move the SD card from the Nucleo to the PC to use the PC tools ?
Kind regards,
Stefano
by steve64
Mon Dec 24, 2018 2:43 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Context switch
Replies: 4
Views: 17499

Re: Context switch

Thanks, I will look at it.
by steve64
Fri Dec 21, 2018 4:57 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Context switch
Replies: 4
Views: 17499

Re: Context switch

I will investigate the ASSERT/ SVCTrap road. Thanks for the suggestion. I need to stay with a standard core like Cortex-M and a RTOS is not applicable in my target scenario for both memory constraints and context switch speed requirements. Also I would like to use Oberon. What I need is a solution f...
by steve64
Thu Dec 20, 2018 4:54 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Context switch
Replies: 4
Views: 17499

Context switch

I'm wondering if it's feasible to implement with pure Oberon code (of course Astrobe-specific) a simple cooperative multitasking for the STM32 M7 platform based on following assumptions: 1) each task is an Oberon procedure but with its own stack 2) each task explicitly gives control to other tasks (...
by steve64
Thu Dec 20, 2018 4:41 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: User commands in menubar
Replies: 6
Views: 25905

Re: User commands in menubar

It looks fine, looking forward for the release...
by steve64
Wed Oct 24, 2018 12:24 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Dump variables to PC
Replies: 3
Views: 15900

Re: Dump variables to PC

I have now found the solution. The CLI command must connect in "hotplug" mode:

st-link_cli -c HOTPLUG -r8 2007F5C8 12

Thanks for previous feedback.
by steve64
Tue Oct 23, 2018 3:48 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Dump variables to PC
Replies: 3
Views: 15900

Re: Dump variables to PC

The array is defined at module-level. Tomorrow I will check with the GUI utility instead of the CLI.
by steve64
Tue Oct 23, 2018 11:02 am
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Dump variables to PC
Replies: 3
Views: 15900

Dump variables to PC

I'm trying to fill an Oberon-07 array variable inside a program and, after program termination, dumping back the array from the PC. The array is defined as: VAR shared: ARRAY 32 OF BYTE; and filled in the init body as: FOR i := 0 TO 15 DO shared := i END; where I also print the physical addresses as...
by steve64
Tue Oct 23, 2018 8:57 am
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Upload and Run
Replies: 2
Views: 13844

Re: Upload and Run

Perfect!
I'm able to load programs with a plain copy to the USB drive and run then using st-link_cli -rst
I mostly use the Astrobe IDE to do this, but I needed a way to handle some batch scenarios.
by steve64
Mon Oct 22, 2018 3:14 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Upload and Run
Replies: 2
Views: 13844

Upload and Run

I would like to know, possibly, which are the commands /mechanisms internally invoked by Astrobe IDE for the Nucleo boards in order to carry out the following two actions: 1) transfer a binary image from PC to target flash memory 2) run the program previously stored in flash For custom purposes, com...