-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
4,178 additions
and
2,326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2,310 changes: 1,155 additions & 1,155 deletions
2,310
lpc1114fn28-ra/mecrisp-stellaris-lpc1114fn28.hex
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,6 +86,10 @@ cd stm32f303 | |
md5sum *.bin | ||
cd .. | ||
|
||
cd stm32f303-ra | ||
md5sum *.bin | ||
cd .. | ||
|
||
cd stm32f401 | ||
md5sum *.bin | ||
cd .. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
ARMGNU?=arm-none-eabi | ||
|
||
COPS = -Wall -Os -nostdlib -nostartfiles -ffreestanding -save-temps | ||
AOPS = --warn --fatal-warnings | ||
|
||
all : mecrisp-stellaris-stm32f303.bin | ||
|
||
mecrisp-stellaris-stm32f303.o : mecrisp-stellaris-stm32f303.s | ||
$(ARMGNU)-as mecrisp-stellaris-stm32f303.s -o mecrisp-stellaris-stm32f303.o | ||
|
||
mecrisp-stellaris-stm32f303.bin : memmap mecrisp-stellaris-stm32f303.o | ||
$(ARMGNU)-ld -o mecrisp-stellaris-stm32f303.elf -T memmap mecrisp-stellaris-stm32f303.o | ||
$(ARMGNU)-objdump -D mecrisp-stellaris-stm32f303.elf > mecrisp-stellaris-stm32f303.list | ||
$(ARMGNU)-objcopy mecrisp-stellaris-stm32f303.elf mecrisp-stellaris-stm32f303.bin -O binary | ||
|
||
clean: | ||
rm -f *.bin | ||
rm -f *.o | ||
rm -f *.elf | ||
rm -f *.list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
@ | ||
@ Mecrisp-Stellaris - A native code Forth implementation for ARM-Cortex M microcontrollers | ||
@ Copyright (C) 2013 Matthias Koch | ||
@ | ||
@ This program is free software: you can redistribute it and/or modify | ||
@ it under the terms of the GNU General Public License as published by | ||
@ the Free Software Foundation, either version 3 of the License, or | ||
@ (at your option) any later version. | ||
@ | ||
@ This program is distributed in the hope that it will be useful, | ||
@ but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
@ GNU General Public License for more details. | ||
@ | ||
@ You should have received a copy of the GNU General Public License | ||
@ along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
@ | ||
|
||
@ Schreiben und Löschen des Flash-Speichers im STM32F303. | ||
|
||
@ In diesem Chip gibt es Flashschreibzugriffe mit wählbarer Breite - | ||
@ so ist es diesmal ganz komfortabel. Leider gibt es nur weniger große | ||
@ Sektoren, die getrennt gelöscht werden können. | ||
|
||
@ Write and Erase Flash in STM32F303. | ||
@ Porting: Rewrite this ! You need hflash! and - as far as possible - cflash! | ||
|
||
|
||
.equ FLASH_Base, 0x40022000 | ||
|
||
.equ FLASH_ACR, FLASH_Base + 0x00 @ Flash Access Control Register | ||
.equ FLASH_KEYR, FLASH_Base + 0x04 @ Flash Key Register | ||
.equ FLASH_OPTKEYR, FLASH_Base + 0x08 @ Flash Option Key Register | ||
.equ FLASH_SR, FLASH_Base + 0x0C @ Flash Status Register | ||
.equ FLASH_CR, FLASH_Base + 0x10 @ Flash Control Register | ||
.equ FLASH_AR, FLASH_Base + 0x14 @ Flash Address Register | ||
.equ FLASH_OBR, FLASH_Base + 0x1C @ Flash Option Byte Register | ||
|
||
@ ----------------------------------------------------------------------------- | ||
Wortbirne Flag_visible, "hflash!" @ ( x Addr -- ) | ||
@ Schreibt an die auf 2 gerade Adresse in den Flash. | ||
h_flashkomma: | ||
@ ----------------------------------------------------------------------------- | ||
popda r0 @ Adresse | ||
popda r1 @ Inhalt. | ||
|
||
@ Ist die gewünschte Stelle im Flash-Dictionary ? Außerhalb des Forth-Kerns ? | ||
ldr r3, =Kernschutzadresse | ||
cmp r0, r3 | ||
blo 3f | ||
|
||
ldr r3, =FlashDictionaryEnde | ||
cmp r0, r3 | ||
bhs 3f | ||
|
||
|
||
@ Prüfe Inhalt. Schreibe nur, wenn es NICHT -1 ist. | ||
ldr r3, =0xFFFF | ||
ands r1, r3 @ High-Halfword der Daten wegmaskieren | ||
cmp r1, r3 | ||
beq 2f @ Fertig ohne zu Schreiben | ||
|
||
@ Prüfe die Adresse: Sie muss auf 2 gerade sein: | ||
movs r2, #1 | ||
ands r2, r0 | ||
cmp r2, #0 | ||
bne 3f | ||
|
||
@ Ist an der gewünschten Stelle -1 im Speicher ? | ||
ldrh r2, [r0] | ||
cmp r2, r3 | ||
bne 3f | ||
|
||
@ Okay, alle Proben bestanden. | ||
|
||
@ Im STM32F051 ist der Flash-Speicher gespiegelt, die wirkliche Adresse liegt weiter hinten ! | ||
@ Flash memory is mirrored, use true address later for write | ||
ldr r2, =0x08000000 | ||
adds r0, r2 | ||
|
||
@ Bereit zum Schreiben ! | ||
|
||
@ Unlock Flash Control | ||
ldr r2, =FLASH_KEYR | ||
ldr r3, =0x45670123 | ||
str r3, [r2] | ||
ldr r3, =0xCDEF89AB | ||
str r3, [r2] | ||
|
||
@ Enable write | ||
ldr r2, =FLASH_CR | ||
movs r3, #1 @ Select Flash programming | ||
str r3, [r2] | ||
|
||
@ Write to Flash ! | ||
strh r1, [r0] | ||
|
||
@ Wait for Flash BUSY Flag to be cleared | ||
ldr r2, =FLASH_SR | ||
|
||
1: ldr r3, [r2] | ||
@ ands r3, #1 | ||
movs r0, #1 | ||
ands r0, r3 | ||
bne 1b | ||
|
||
@ Lock Flash after finishing this | ||
ldr r2, =FLASH_CR | ||
movs r3, #0x80 | ||
str r3, [r2] | ||
|
||
2:bx lr | ||
3:Fehler_Quit "Wrong address or data for writing flash !" | ||
|
||
|
||
@ ----------------------------------------------------------------------------- | ||
Wortbirne Flag_visible, "flashpageerase" @ ( Addr -- ) | ||
@ Löscht einen 2kb großen Flashblock Deletes one 2kb Flash page | ||
flashpageerase: | ||
@ ----------------------------------------------------------------------------- | ||
push {r0, r1, r2, r3, lr} | ||
popda r0 @ Adresse zum Löschen holen Fetch address to erase. | ||
|
||
@ Ist die gewünschte Stelle im Flash-Dictionary ? Außerhalb des Forth-Kerns ? Don't erase Forth core. | ||
ldr r3, =Kernschutzadresse | ||
cmp r0, r3 | ||
blo 2f | ||
|
||
ldr r2, =FLASH_KEYR | ||
ldr r3, =0x45670123 | ||
str r3, [r2] | ||
ldr r3, =0xCDEF89AB | ||
str r3, [r2] | ||
|
||
@ Enable erase | ||
ldr r2, =FLASH_CR | ||
movs r3, #2 @ Set Erase bit | ||
str r3, [r2] | ||
|
||
@ Set page to erase | ||
ldr r2, =FLASH_AR | ||
str r0, [r2] | ||
|
||
@ Start erasing | ||
ldr r2, =FLASH_CR | ||
movs r3, #0x42 @ Start + Erase | ||
str r3, [r2] | ||
|
||
@ Wait for Flash BUSY Flag to be cleared | ||
ldr r2, =FLASH_SR | ||
1: ldr r3, [r2] | ||
movs r0, #1 | ||
ands r0, r3 | ||
bne 1b | ||
|
||
@ Lock Flash after finishing this | ||
ldr r2, =FLASH_CR | ||
movs r3, #0x80 | ||
str r3, [r2] | ||
|
||
2:pop {r0, r1, r2, r3, pc} | ||
|
||
@ ----------------------------------------------------------------------------- | ||
Wortbirne Flag_visible, "eraseflash" @ ( -- ) | ||
@ Löscht den gesamten Inhalt des Flashdictionaries. | ||
@ ----------------------------------------------------------------------------- | ||
ldr r0, =FlashDictionaryAnfang | ||
eraseflash_intern: | ||
cpsid i | ||
ldr r1, =FlashDictionaryEnde | ||
ldr r2, =0xFFFF | ||
|
||
1: ldrh r3, [r0] | ||
cmp r3, r2 | ||
beq 2f | ||
pushda r0 | ||
dup | ||
write "Erase block at " | ||
bl hexdot | ||
writeln " from Flash" | ||
bl flashpageerase | ||
2: adds r0, #2 | ||
cmp r0, r1 | ||
bne 1b | ||
writeln "Finished. Reset !" | ||
bl Restart | ||
|
||
@ ----------------------------------------------------------------------------- | ||
Wortbirne Flag_visible, "eraseflashfrom" @ ( Addr -- ) | ||
@ Beginnt an der angegebenen Adresse mit dem Löschen des Dictionaries. | ||
@ ----------------------------------------------------------------------------- | ||
popda r0 | ||
b.n eraseflash_intern |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
@ | ||
@ Mecrisp-Stellaris - A native code Forth implementation for ARM-Cortex M microcontrollers | ||
@ Copyright (C) 2013 Matthias Koch | ||
@ | ||
@ This program is free software: you can redistribute it and/or modify | ||
@ it under the terms of the GNU General Public License as published by | ||
@ the Free Software Foundation, either version 3 of the License, or | ||
@ (at your option) any later version. | ||
@ | ||
@ This program is distributed in the hope that it will be useful, | ||
@ but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
@ GNU General Public License for more details. | ||
@ | ||
@ You should have received a copy of the GNU General Public License | ||
@ along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
@ | ||
|
||
@ Routinen für die Interrupthandler, die zur Laufzeit neu gesetzt werden können. | ||
@ Code for interrupt handlers that are exchangeable on the fly | ||
|
||
@------------------------------------------------------------------------------ | ||
@ Alle Interrupthandler funktionieren gleich und werden komfortabel mit einem Makro erzeugt: | ||
@ All interrupt handlers work the same way and are generated with a macro: | ||
@------------------------------------------------------------------------------ | ||
|
||
interrupt exti0 | ||
interrupt exti1 | ||
interrupt exti2 | ||
interrupt exti3 | ||
interrupt exti4 | ||
interrupt adc | ||
interrupt tim2 | ||
interrupt tim3 | ||
interrupt tim4 | ||
|
||
@------------------------------------------------------------------------------ | ||
|
Oops, something went wrong.