Search found 35 matches

by Helpdesk
Thu Dec 31, 2015 4:25 am
Forum: Astrobe for FPGA RISC5
Topic: RISC5 Oberon on the $99 Arty Artix 7 FPGA Development Board
Replies: 4
Views: 29003

Re: RISC5 Oberon on the $99 Arty Artix 7 FPGA Development Bo

I would like to test Astrobe for FPGA RISC5 Embedded Version.

Therefore I want to buy Artix-7 (I have already the OberonStation). On your webpage I saw the link for the Artix-7 35T Arty FPGA Evaluation Kit

Should I order just this Artix-7 35T Arty FPGA Evaluation Kit? Do I need something else?
by Helpdesk
Sun Dec 06, 2015 4:35 am
Forum: Astrobe for FPGA RISC5
Topic: LEDs status / Trap numbers
Replies: 1
Views: 14355

LEDs status / Trap numbers

Do you know what the LEDs status 11000010 means?
by Helpdesk
Fri Jun 26, 2015 12:03 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Allocating from the heap when a module is initialised
Replies: 1
Views: 16827

Allocating from the heap when a module is initialised

it took me a long time to fix a nasty problem that looked like memory being overwritten somehow. I found out that the overwritten memory -a record allocated on heap- was allocated during the MODULE Initialisation sequence before the body of MODULE Storage got called which reset the heap start addres...
by Helpdesk
Fri Jun 26, 2015 12:01 pm
Forum: Getting Started
Topic: Using both Astrobe M3 and M4 seamlessly
Replies: 1
Views: 19043

Using both Astrobe M3 and M4 seamlessly

I plan to use M3 and M4 platforms in the near future. How shall I organize my projects (my PC) to be able to switch seamless between the two versions?
by Helpdesk
Sat Aug 03, 2013 3:11 am
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: NXP LPC1800-series microcontrollers
Replies: 1
Views: 19224

NXP LPC1800-series microcontrollers

Can Astrobe-M3 compiler generate code for LPC1800-family (180 MHz) NXP microcontrollers?
by Helpdesk
Sat Aug 03, 2013 3:06 am
Forum: Getting Started
Topic: Blinker example for mbed board
Replies: 1
Views: 19440

Blinker example for mbed board

The Blinker.mod example included with Astrobe does not work on the LPC1768 mbed board. I tried both example at ..\LPC1769\Coridium and at ..\LPC1769\LPCXpresso, but it did not work.

Are they suppose to work out of the box on the LPC1768 mbed?
by Helpdesk
Sun Jul 29, 2012 6:37 am
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Syntax colouring enhancement request
Replies: 1
Views: 18820

Syntax colouring enhancement request

Syntax colouring. I prefer the following style (I called it "strict" :-) ): 1. Background color is white. 2. Default text: black color, normal (not bold, not italic, not underlined). 3. If identifier marked for export, it should be bold (include '*'). 4. ASSERTs should be bold. 5. "SYSTEM" { Selecto...
by Helpdesk
Fri Feb 03, 2012 7:11 am
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Oberon running on Cortex-M3
Replies: 4
Views: 33846

Re: Oberon running on Cortex-M3

Congratulations! And when I can successfully use of Astrobe to develop and run Oberon programs on an ARM Cortex-M3 MCU? :-)
by Helpdesk
Thu Dec 08, 2011 9:23 pm
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Trap in MAU
Replies: 6
Views: 45911

Trap in MAU

What does "Trap @00001630H in MAU, Line: 26, Code: 11" mean?
by Helpdesk
Fri Apr 01, 2011 12:15 pm
Forum: Oberon Language
Topic: Exit mid-loop
Replies: 2
Views: 16581

Exit mid-loop

What is the 'correct' way to exit a REPEAT...UNTIL loop?

Code: Select all

REPEAT
  ...
  ...
  IF Error THEN exit;    (* Leave the room NOW!! *)
  ....
  ....
UNTIL ...
Not appropriate to check at the beginning of the loop as Error hasn't yet
occurred.
Can't continue with the loop to UNTIL as I have an Error.