Search found 30 matches

by Helpdesk
Sat Aug 03, 2013 3:06 am
Forum: Getting Started
Topic: Blinker example for mbed board
Replies: 1
Views: 23165

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: 18975

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: 34321

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: 46118

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: 16662

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.
by Helpdesk
Sat Mar 12, 2011 5:38 am
Forum: Getting Started
Topic: Info example says the LPC2103 only has 8k
Replies: 1
Views: 21410

Info example says the LPC2103 only has 8k

I don't understand the output from Info.mod

It says Memory Available 7140 - but Info.map shows only something like 8000 bytes used in total and the 2103 has 32K.... Where did the rest go?
by Helpdesk
Tue Feb 01, 2011 11:03 am
Forum: Oberon Language
Topic: Convert CHAR to INTEGER
Replies: 1
Views: 11753

Convert CHAR to INTEGER

How do I convert a CHAR (from serial input) to an INTEGER?
by Helpdesk
Mon Jan 03, 2011 11:06 pm
Forum: Oberon Language
Topic: Forward Procedures
Replies: 1
Views: 12699

Forward Procedures

How do I declare a forward Procedure? The declaration:

Code: Select all

PROCEDURE ^P(i: INTEGER);
Results in the error message "no ;" at the ^.
by Helpdesk
Mon Jan 03, 2011 12:14 pm
Forum: Getting Started
Topic: IMPORT Main?
Replies: 1
Views: 16403

IMPORT Main?

Where is it defined what user start-up function is called by the import "main()" ?
by Helpdesk
Mon Jan 03, 2011 6:01 am
Forum: Oberon Language
Topic: Shifts and masks
Replies: 3
Views: 21009

Shifts and masks

How is the best way to do the Pascal equivalent of:

Code: Select all

R := ( R shr 6) and $3FF;