Search found 444 matches

by cfbsoftware
Sat Jul 14, 2012 12:08 am
Forum: Astrobe for ARM Cortex-M0, M3, M4 and M7
Topic: Oberon running on Cortex-M3
Replies: 4
Views: 33938

Re: Oberon running on Cortex-M3

First of all check that you can communicate with your board via UART0 when running a program e.g. the Info example supplied with Astrobe. If that works OK then when you want to upload a binary to an LPC1343 MCU via UART0 you need to ensure there is a LOW level during reset at both the PIO0_1 pin (to...
by cfbsoftware
Wed Jul 11, 2012 3:49 am
Forum: Getting Started
Topic: Olimex LPC-P1343 user-led handling
Replies: 2
Views: 23937

Re: Olimex LPC-P1343 user-led handling

Oops, sorry! There is an error in LPC13xx\MCU.mod. GPIODATA should be GPIO0DATA. For your example you should also change all occurrences of GPIODATA to GPIO3DATA.

If you still can't get it to work let us know which development board you are using - I assume the MCU is an LPC1343?
by cfbsoftware
Mon Jun 18, 2012 2:07 pm
Forum: Cortex-M0, M3, M4 and M7
Topic: Measure temperature with a TI TMP102 using I2C
Replies: 0
Views: 19607

Measure temperature with a TI TMP102 using I2C

MODULE Temperature; (* ========================================================================= Example Cortex-M3 Oberon I2C Temperature Measurement Program Description: Monitors the current temperature every second and writes it to output whenever it changes Target: LPC17xx systems with a TI TMP1...
by cfbsoftware
Sun Jun 17, 2012 12:30 pm
Forum: Cortex-M0, M3, M4 and M7
Topic: Read/Write the 8K EEPROM on an LPCxpresso LPC1769
Replies: 0
Views: 41038

Read/Write the 8K EEPROM on an LPCxpresso LPC1769

MODULE EEPROM8K; (* ========================================================================= Example Cortex-M3 Oberon Program Description: Read / Writes a string and an integer to EEPROM via I2C bus Target: LPC17xx systems with a 8 kbit EEPROM e.g. MicroChip 24LC64 connected to the I2C bus Tested ...
by cfbsoftware
Sun Jun 17, 2012 6:39 am
Forum: Cortex-M0, M3, M4 and M7
Topic: Read a Honeywell HMC6352 magnetic compass using I2C
Replies: 0
Views: 18424

Read a Honeywell HMC6352 magnetic compass using I2C

MODULE Compass; (* ===================================================================== Example Cortex-M3 Oberon I2C Digital Compass Program Description: Displays the magnetic compass bearings (0 - 359 deg) every second Target: LPC17xx systems with a Honeywell HMC6352 digital compass connected to ...
by cfbsoftware
Sat Jun 16, 2012 7:13 am
Forum: Cortex-M0, M3, M4 and M7
Topic: Display AutoCad Slides on a Nokia 6610 LCD display
Replies: 0
Views: 17973

Display AutoCad Slides on a Nokia 6610 LCD display

This is the source code of the LPC1766 Cortex-M3 version of the Oberon program shown in the YouTube video: http://www.youtube.com/watch?v=qmSqhAG_ea0 MODULE SlideDemo; (* ========================================================================= Main Program for AutoCad Slide Demo Target: Hardware-in...
by cfbsoftware
Sat Jun 09, 2012 1:25 am
Forum: Cortex-M0, M3, M4 and M7
Topic: Read a micro SD card using MMC / SPI
Replies: 5
Views: 45965

Read a micro SD card using MMC / SPI

Main module: Readcard.mod MODULE ReadCard; (* ========================================================================= Example ARM Oberon Program Description: Display the letters and numbers found in the first four blocks of an SD Card that appear to contain text information. Target: LPC17xx system...
by cfbsoftware
Sat Jun 09, 2012 1:14 am
Forum: Cortex-M0, M3, M4 and M7
Topic: Read a Bosch SBM380 Accelerometer using I2C
Replies: 0
Views: 16583

Read a Bosch SBM380 Accelerometer using I2C

MODULE Accelerometer; (* ========================================================================= Example ARM Oberon I2C Accelerometer Program Description: Reads the accelerometer X, Y, Z and temperature values every 50ms and displays the values whenever the change exceeds a specified threshold. T...
by cfbsoftware
Sat Jun 09, 2012 1:11 am
Forum: Cortex-M0, M3, M4 and M7
Topic: 7-Segment LED display using SPI
Replies: 0
Views: 15278

7-Segment LED display using SPI

MODULE LedSeconds; (* ========================================================================= Example Cortex-M3 Oberon Program Description: Counting seconds on a 7-segment LED Target: LPC13xx systems with an 7-segment led display connected to the SPI0/SSP0 bus Tested on: LPCXpresso LPC1343 Refs: ...
by cfbsoftware
Sat Jun 09, 2012 1:06 am
Forum: Cortex-M0, M3, M4 and M7
Topic: Read a Freescale MMA7455 Accelerometer using I2C
Replies: 0
Views: 15394

Read a Freescale MMA7455 Accelerometer using I2C

MODULE Accelerometer; (* ========================================================================= Example Cortex-M3 Oberon I2C Accelerometer Program Description: Reads the accelerometer X, Y, Z and temperature values every 50ms and displays the values whenever the change exceeds a specified thresh...