been meaning to make one of these for a long time, this is just the first cut,
already did this with a microcontroller, repeating with a different display and pi zero.
This commit is contained in:
22
README
22
README
@@ -285,4 +285,26 @@ I know. the older ones being more pure, but also some notable bugs
|
||||
in the docs, instruction encodings and some other things.
|
||||
http://www.home.marutan.net/arcemdocs/
|
||||
|
||||
Actually the preferred place is to go to http://infocenter.arm.com
|
||||
On the left expand ARM Architecture, expand Reference Manuals, then
|
||||
select ARMv5 Reference Manual then on the main part of the page click
|
||||
on the pdf file to download. You might have to give up an email address
|
||||
to make an account on the site to download. Yes the Raspberry pi 1
|
||||
uses an ARMv6 but the ARMv5 manual is the original ARM ARM and covers
|
||||
the ARMv6. The raspberry pi 2 uses an ARMv7 so you will want to also
|
||||
or instead get the ARMv7-AR Reference Manual. The ARMv6-M does NOT
|
||||
apply to the Rasperry pi 1 core.
|
||||
|
||||
|
||||
I managed to get a pi zero ordered the first day somehow. And it works
|
||||
like the pi 1, I assume it is 1000mhz now instead of 750, but the
|
||||
peripheral clock for the uart still uses the same divisor and works.
|
||||
I did need to get a new bootcode.bin and start.elf, not sure how old
|
||||
the ones I had on the sd card were, but pulled new ones and the uart01
|
||||
example worked just fine. You do have to solder pins now or somehow
|
||||
solve that and I soldered a momentary button on the run pins and like
|
||||
the other boards those appear to be the reset.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
32
gps_clock/Makefile
Normal file
32
gps_clock/Makefile
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
ARMGNU ?= arm-none-eabi
|
||||
|
||||
COPS = -mthumb -Wall -O2 -nostdlib -nostartfiles -ffreestanding
|
||||
|
||||
all : notmain.hex notmain.bin
|
||||
|
||||
clean :
|
||||
rm -f *.o
|
||||
rm -f *.bin
|
||||
rm -f *.hex
|
||||
rm -f *.elf
|
||||
rm -f *.list
|
||||
rm -f *.img
|
||||
|
||||
novectors.o : novectors.s
|
||||
$(ARMGNU)-as novectors.s -o novectors.o
|
||||
|
||||
notmain.o : notmain.c fontdata.h
|
||||
$(ARMGNU)-gcc $(COPS) -c notmain.c -o notmain.o
|
||||
|
||||
notmain.elf : memmap novectors.o notmain.o
|
||||
$(ARMGNU)-ld novectors.o notmain.o -T memmap -o notmain.elf
|
||||
$(ARMGNU)-objdump -D notmain.elf > notmain.list
|
||||
|
||||
notmain.bin : notmain.elf
|
||||
$(ARMGNU)-objcopy notmain.elf -O binary notmain.bin
|
||||
|
||||
notmain.hex : notmain.elf
|
||||
$(ARMGNU)-objcopy notmain.elf -O ihex notmain.hex
|
||||
|
||||
|
||||
42
gps_clock/README
Normal file
42
gps_clock/README
Normal file
@@ -0,0 +1,42 @@
|
||||
|
||||
See the top level README for information on where to find the
|
||||
schematic and programmers reference manual for the ARM processor
|
||||
on the raspberry pi. Also find information on how to load and run
|
||||
these programs.
|
||||
|
||||
This is derived from the spi03 example which uses the Nokia 5110
|
||||
display. Also uses a generic 9600 baud gps receiver to extract accurate
|
||||
time in nmea format.
|
||||
|
||||
Nokia 5110 to raspi
|
||||
|
||||
GND P1-25 ground
|
||||
VCC P1-1 power
|
||||
DIN (MOSI) P1-19 data in, spi mosi
|
||||
SCK/CLK P1-23 spi clock
|
||||
D/C P1-22 data/command
|
||||
RST P1-26 reset
|
||||
CS/CE P1-24 spi chip select
|
||||
|
||||
GPS to raspi
|
||||
|
||||
VCC P1-17 (3.3v)
|
||||
GND P1-6
|
||||
TX P1-8
|
||||
|
||||
|
||||
I will have to re-read my code or the docs some day but the math for
|
||||
baud rate in case you have a 4800 or 1200 baud (or faster) gps
|
||||
receiver output
|
||||
|
||||
// PUT32(AUX_MU_BAUD_REG,270); //115200
|
||||
PUT32(AUX_MU_BAUD_REG,3254); //9600?
|
||||
|
||||
trim fraction off of (250000000/(8*baud))-1
|
||||
|
||||
I am not bothering to check the checksum, nor if it is even locked,
|
||||
quick and dirty.
|
||||
|
||||
change this for your timezone. or daylight savings
|
||||
|
||||
ra=5; //time zone adjustment
|
||||
2905
gps_clock/fontdata.h
Normal file
2905
gps_clock/fontdata.h
Normal file
File diff suppressed because it is too large
Load Diff
12
gps_clock/memmap
Normal file
12
gps_clock/memmap
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
MEMORY
|
||||
{
|
||||
ram : ORIGIN = 0x8000, LENGTH = 0x1000
|
||||
}
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.text : { *(.text*) } > ram
|
||||
.bss : { *(.bss*) } > ram
|
||||
}
|
||||
|
||||
493
gps_clock/notmain.c
Normal file
493
gps_clock/notmain.c
Normal file
@@ -0,0 +1,493 @@
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
#include "fontdata.h"
|
||||
|
||||
extern void PUT32 ( unsigned int, unsigned int );
|
||||
extern unsigned int GET32 ( unsigned int );
|
||||
extern void dummy ( unsigned int );
|
||||
|
||||
#define GPFSEL0 0x20200000
|
||||
#define GPFSEL1 0x20200004
|
||||
#define GPFSEL2 0x20200008
|
||||
|
||||
#define GPSET0 0x2020001C
|
||||
#define GPCLR0 0x20200028
|
||||
#define GPPUD 0x20200094
|
||||
#define GPPUDCLK0 0x20200098
|
||||
|
||||
#define AUX_ENABLES 0x20215004
|
||||
#define AUX_MU_IO_REG 0x20215040
|
||||
#define AUX_MU_IER_REG 0x20215044
|
||||
#define AUX_MU_IIR_REG 0x20215048
|
||||
#define AUX_MU_LCR_REG 0x2021504C
|
||||
#define AUX_MU_MCR_REG 0x20215050
|
||||
#define AUX_MU_LSR_REG 0x20215054
|
||||
#define AUX_MU_MSR_REG 0x20215058
|
||||
#define AUX_MU_SCRATCH 0x2021505C
|
||||
#define AUX_MU_CNTL_REG 0x20215060
|
||||
#define AUX_MU_STAT_REG 0x20215064
|
||||
#define AUX_MU_BAUD_REG 0x20215068
|
||||
|
||||
#define AUX_SPI0_CS 0x20204000
|
||||
#define AUX_SPI0_FIFO 0x20204004
|
||||
#define AUX_SPI0_CLK 0x20204008
|
||||
#define AUX_SPI0_DLEN 0x2020400C
|
||||
#define AUX_SPI0_LTOH 0x20204010
|
||||
#define AUX_SPI0_DC 0x20204014
|
||||
|
||||
|
||||
#define SETCONTRAST 0x81
|
||||
#define DISPLAYALLONRESUME 0xA4
|
||||
#define DISPLAYALLON 0xA5
|
||||
#define NORMALDISPLAY 0xA6
|
||||
#define INVERTDISPLAY 0xA7
|
||||
#define DISPLAYOFF 0xAE
|
||||
#define DISPLAYON 0xAF
|
||||
#define SETDISPLAYOFFSET 0xD3
|
||||
#define SETCOMPINS 0xDA
|
||||
#define SETVCOMDESELECT 0xDB
|
||||
#define SETDISPLAYCLOCKDIV 0xD5
|
||||
#define SETPRECHARGE 0xD9
|
||||
#define SETMULTIPLEX 0xA8
|
||||
#define SETLOWCOLUMN 0x00
|
||||
#define SETHIGHCOLUMN 0x10
|
||||
#define SETSTARTLINE 0x40
|
||||
#define MEMORYMODE 0x20
|
||||
#define COMSCANINC 0xC0
|
||||
#define COMSCANDEC 0xC8
|
||||
#define SEGREMAP 0xA0
|
||||
#define CHARGEPUMP 0x8D
|
||||
#define EXTERNALVCC 0x01
|
||||
#define SWITCHCAPVCC 0x02
|
||||
|
||||
|
||||
|
||||
unsigned int hex_screen_history[6];
|
||||
|
||||
unsigned char xstring[32];
|
||||
unsigned int tim[4];
|
||||
|
||||
|
||||
//GPIO14 TXD0 and TXD1
|
||||
//GPIO15 RXD0 and RXD1
|
||||
//alt function 5 for uart1
|
||||
//alt function 0 for uart0
|
||||
|
||||
//((250,000,000/115200)/8)-1 = 270
|
||||
//------------------------------------------------------------------------
|
||||
void uart_init ( void )
|
||||
{
|
||||
unsigned int ra;
|
||||
|
||||
ra=GET32(AUX_ENABLES);
|
||||
ra|=1; //enable mini uart
|
||||
PUT32(AUX_ENABLES,ra);
|
||||
PUT32(AUX_MU_IER_REG,0);
|
||||
PUT32(AUX_MU_CNTL_REG,0);
|
||||
PUT32(AUX_MU_LCR_REG,3);
|
||||
PUT32(AUX_MU_MCR_REG,0);
|
||||
PUT32(AUX_MU_IER_REG,0);
|
||||
PUT32(AUX_MU_IIR_REG,0xC6);
|
||||
// PUT32(AUX_MU_BAUD_REG,270); //115200
|
||||
PUT32(AUX_MU_BAUD_REG,3254); //9600?
|
||||
//setup gpio before enabling uart
|
||||
ra=GET32(GPFSEL1);
|
||||
ra&=~(7<<12); //gpio14
|
||||
ra|=2<<12; //alt5
|
||||
ra&=~(7<<15); //gpio15
|
||||
ra|=2<<15; //alt5
|
||||
PUT32(GPFSEL1,ra);
|
||||
PUT32(GPPUD,0);
|
||||
for(ra=0;ra<150;ra++) dummy(ra);
|
||||
PUT32(GPPUDCLK0,(1<<14)|(1<<15));
|
||||
for(ra=0;ra<150;ra++) dummy(ra);
|
||||
PUT32(GPPUDCLK0,0);
|
||||
//enable uart
|
||||
PUT32(AUX_MU_CNTL_REG,3);
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
void uart_putc ( unsigned int c )
|
||||
{
|
||||
while(1)
|
||||
{
|
||||
if(GET32(AUX_MU_LSR_REG)&0x20) break;
|
||||
}
|
||||
PUT32(AUX_MU_IO_REG,c);
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
unsigned int uart_recv ( void )
|
||||
{
|
||||
while(1)
|
||||
{
|
||||
if(GET32(AUX_MU_LSR_REG)&0x01) break;
|
||||
}
|
||||
return(GET32(AUX_MU_IO_REG)&0xFF);
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
void hexstrings ( unsigned int d )
|
||||
{
|
||||
//unsigned int ra;
|
||||
unsigned int rb;
|
||||
unsigned int rc;
|
||||
|
||||
rb=32;
|
||||
while(1)
|
||||
{
|
||||
rb-=4;
|
||||
rc=(d>>rb)&0xF;
|
||||
if(rc>9) rc+=0x37; else rc+=0x30;
|
||||
uart_putc(rc);
|
||||
if(rb==0) break;
|
||||
}
|
||||
uart_putc(0x20);
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
void hexstring ( unsigned int d )
|
||||
{
|
||||
hexstrings(d);
|
||||
uart_putc(0x0D);
|
||||
uart_putc(0x0A);
|
||||
}
|
||||
|
||||
//GPIO7 SPI0_CE1_N P1-26 (use for reset)
|
||||
//GPIO8 SPI0_CE0_N P1-24
|
||||
//GPIO9 SPI0_MISO P1-21
|
||||
//GPIO10 SPI0_MOSI P1-19
|
||||
//GPIO11 SPI0_SCLK P1-23
|
||||
//alt function 0 for all of the above
|
||||
|
||||
//P1 1 +3V3
|
||||
//P1 25 GND
|
||||
|
||||
//P1 22 GPIO25 use as D/C
|
||||
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
void spi_init ( void )
|
||||
{
|
||||
unsigned int ra;
|
||||
|
||||
ra=GET32(AUX_ENABLES);
|
||||
ra|=2; //enable spi0
|
||||
PUT32(AUX_ENABLES,ra);
|
||||
|
||||
ra=GET32(GPFSEL0);
|
||||
//ra&=~(7<<27); //gpio9
|
||||
//ra|=4<<27; //alt0
|
||||
//ra|=1<<27; //output
|
||||
ra&=~(7<<24); //gpio8
|
||||
ra|=4<<24; //alt0
|
||||
ra&=~(7<<21); //gpio7
|
||||
//ra|=4<<21; //alt0
|
||||
ra|=1<<21; //output
|
||||
PUT32(GPFSEL0,ra);
|
||||
ra=GET32(GPFSEL1);
|
||||
ra&=~(7<<0); //gpio10/
|
||||
ra|=4<<0; //alt0
|
||||
ra&=~(7<<3); //gpio11/
|
||||
ra|=4<<3; //alt0
|
||||
PUT32(GPFSEL1,ra);
|
||||
ra=GET32(GPFSEL2);
|
||||
ra&=~(7<<15); //gpio25/
|
||||
ra|=1<<15; //output
|
||||
PUT32(GPFSEL2,ra);
|
||||
|
||||
PUT32(AUX_SPI0_CS,0x0000030);
|
||||
// PUT32(AUX_SPI0_CLK,0x0000); //slowest possible, could probably go faster here
|
||||
PUT32(AUX_SPI0_CLK,26);
|
||||
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
void spi_one_byte ( unsigned int x )
|
||||
{
|
||||
PUT32(AUX_SPI0_CS,0x000000B0); //TA=1 cs asserted
|
||||
while(1)
|
||||
{
|
||||
if(GET32(AUX_SPI0_CS)&(1<<18)) break; //TXD
|
||||
}
|
||||
PUT32(AUX_SPI0_FIFO,x&0xFF);
|
||||
while(1) if(GET32(AUX_SPI0_CS)&(1<<16)) break;
|
||||
//while(1) if(GET32(AUX_SPI0_CS)&(1<<17)) break; //should I wait for this?
|
||||
PUT32(AUX_SPI0_CS,0x00000000); //cs0 comes back up
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
void spi_command ( unsigned int cmd )
|
||||
{
|
||||
PUT32(GPCLR0,1<<25); //D/C = 0 for command
|
||||
spi_one_byte(cmd);
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
void spi_data ( unsigned int data )
|
||||
{
|
||||
PUT32(GPSET0,1<<25); //D/C = 1 for data
|
||||
spi_one_byte(data);
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
//void show_string ( unsigned int row, const char *s )
|
||||
//{
|
||||
//unsigned int ra;
|
||||
//unsigned int rb;
|
||||
//unsigned int rc;
|
||||
//unsigned int rd;
|
||||
|
||||
//row&=7;
|
||||
//spi_command(0x80); //column
|
||||
//spi_command(0x40|row); //row
|
||||
//rc=0;
|
||||
//for(ra=0;ra<11;ra++)
|
||||
//{
|
||||
//if(s[ra]==0) break;
|
||||
//for(rb=0;rb<8;rb++)
|
||||
//{
|
||||
//rd=s[ra];
|
||||
//spi_data(fontdata[rd][rb]);
|
||||
//rc++;
|
||||
//}
|
||||
//}
|
||||
//for(;rc<84;rc++) spi_data(0);
|
||||
//}
|
||||
//------------------------------------------------------------------------
|
||||
void show_time ( void )
|
||||
{
|
||||
unsigned int ra;
|
||||
unsigned int rb;
|
||||
unsigned int rc;
|
||||
unsigned int rd;
|
||||
unsigned int re;
|
||||
unsigned int rf;
|
||||
|
||||
uart_putc(0x30+(tim[0]&0xF));
|
||||
uart_putc(0x30+(tim[1]&0xF));
|
||||
uart_putc(0x30+(tim[2]&0xF));
|
||||
uart_putc(0x30+(tim[3]&0xF));
|
||||
uart_putc(0x0D);
|
||||
uart_putc(0x0A);
|
||||
|
||||
|
||||
for(rb=0;rb<5;rb++)
|
||||
{
|
||||
spi_command(0x80); //column
|
||||
spi_command(0x40|rb); //row
|
||||
if(tim[0]==0) re=0x00;
|
||||
else re=0xFF;
|
||||
for(rf=0;rf<6;rf++) spi_data(re);
|
||||
for(rf=0;rf<6;rf++) spi_data(0x00);
|
||||
for(ra=1;ra<4;ra++)
|
||||
{
|
||||
rc=clockdata[tim[ra]][rb];
|
||||
for(rd=0x8;rd;rd>>=1)
|
||||
{
|
||||
if(rc&rd) re=0xFF;
|
||||
else re=0x00;
|
||||
for(rf=0;rf<6;rf++) spi_data(re);
|
||||
}
|
||||
}
|
||||
//for(rf=0;rf<0x1000;rf++) dummy(rf);
|
||||
}
|
||||
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
int do_nmea ( void )
|
||||
{
|
||||
unsigned int ra;
|
||||
unsigned int rb;
|
||||
unsigned int rc;
|
||||
unsigned int state;
|
||||
unsigned int off;
|
||||
//unsigned char toggle_seconds;
|
||||
|
||||
//toggle_seconds=0;
|
||||
state=0;
|
||||
off=0;
|
||||
//$GPRMC,054033.00,V,
|
||||
while(1)
|
||||
{
|
||||
ra=uart_recv();
|
||||
//**/ uart_putc(ra);
|
||||
//uart_putc(0x30+state);
|
||||
switch(state)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
if(ra=='$') state++;
|
||||
else state=0;
|
||||
break;
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
if(ra=='G') state++;
|
||||
else state=0;
|
||||
break;
|
||||
}
|
||||
case 2:
|
||||
{
|
||||
if(ra=='P') state++;
|
||||
else state=0;
|
||||
break;
|
||||
}
|
||||
case 3:
|
||||
{
|
||||
if(ra=='R') state++;
|
||||
else state=0;
|
||||
break;
|
||||
}
|
||||
case 4:
|
||||
{
|
||||
if(ra=='M') state++;
|
||||
else state=0;
|
||||
break;
|
||||
}
|
||||
case 5:
|
||||
{
|
||||
if(ra=='C') state++;
|
||||
else state=0;
|
||||
break;
|
||||
}
|
||||
case 6:
|
||||
{
|
||||
off=0;
|
||||
if(ra==',') state++;
|
||||
else state=0;
|
||||
break;
|
||||
}
|
||||
case 7:
|
||||
{
|
||||
if(ra==',')
|
||||
{
|
||||
if(off>7)
|
||||
{
|
||||
rb=xstring[0]&0xF;
|
||||
rc=xstring[1]&0xF;
|
||||
//1010
|
||||
rb=/*rb*10*/(rb<<3)+(rb<<1); //times 10
|
||||
rb+=rc;
|
||||
if(rb>12) rb-=12;
|
||||
ra=5; //time zone adjustment
|
||||
if(rb<=ra) rb+=12;
|
||||
rb-=ra;
|
||||
if(rb>9)
|
||||
{
|
||||
xstring[0]='1';
|
||||
rb-=10;
|
||||
}
|
||||
else
|
||||
{
|
||||
xstring[0]='0';
|
||||
}
|
||||
rb&=0xF;
|
||||
xstring[1]=0x30+rb;
|
||||
rb=0;
|
||||
//zstring[rb++]=0x77;
|
||||
//toggle_seconds^=0x10;
|
||||
//zstring[rb++]=toggle_seconds;
|
||||
//zstring[rb++]=xstring[0];
|
||||
//zstring[rb++]=xstring[1];
|
||||
//zstring[rb++]=xstring[2];
|
||||
//zstring[rb++]=xstring[3];
|
||||
//xstring[rb++]=0x0D;
|
||||
//zstring[rb++]=0;
|
||||
tim[0]=xstring[0]&0xF;
|
||||
tim[1]=xstring[1]&0xF;
|
||||
tim[2]=xstring[2]&0xF;
|
||||
tim[3]=xstring[3]&0xF;
|
||||
}
|
||||
else
|
||||
{
|
||||
//zstring[0]=0x33;
|
||||
//zstring[1]=0x33;
|
||||
//zstring[2]=0x33;
|
||||
//zstring[3]=0x33;
|
||||
//xstring[4]=0x0D;
|
||||
//zstring[5]=0;
|
||||
tim[0]=0;
|
||||
tim[1]=0;
|
||||
tim[2]=0;
|
||||
tim[3]=0;
|
||||
}
|
||||
off=0;
|
||||
state++;
|
||||
}
|
||||
else
|
||||
{
|
||||
if(off<16)
|
||||
{
|
||||
xstring[off++]=ra;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 8:
|
||||
{
|
||||
//if(zstring[off]==0)
|
||||
//{
|
||||
//state=0;
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
//uart_send(zstring[off++]);
|
||||
//}
|
||||
show_time();
|
||||
state=0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return(0);
|
||||
}
|
||||
//------------------------------------------------------------------------
|
||||
int notmain ( void )
|
||||
{
|
||||
unsigned int ra;
|
||||
unsigned int rf;
|
||||
|
||||
uart_init();
|
||||
hexstring(0x12345678);
|
||||
for(ra=0;ra<10;ra++)
|
||||
{
|
||||
hexstring(ra);
|
||||
}
|
||||
spi_init();
|
||||
PUT32(GPSET0,1<<7); //reset high
|
||||
for(ra=0;ra<0x10000;ra++) dummy(ra);
|
||||
PUT32(GPCLR0,1<<7); //reset low
|
||||
for(ra=0;ra<0x10000;ra++) dummy(ra);
|
||||
PUT32(GPSET0,1<<7); //reset high
|
||||
|
||||
spi_command(0x21); //extended commands
|
||||
// spi_command(0xB0); //vop less contrast
|
||||
spi_command(0xBF); //vop more contrast
|
||||
spi_command(0x04); //temp coef
|
||||
spi_command(0x14); //bias mode 1:48
|
||||
spi_command(0x20); //extended off
|
||||
spi_command(0x0C); //display on
|
||||
|
||||
spi_command(0x80); //column
|
||||
spi_command(0x40|5); //row
|
||||
for(rf=0;rf<84;rf++) spi_data(0x00);
|
||||
tim[0]=0;
|
||||
tim[1]=0;
|
||||
tim[2]=0;
|
||||
tim[3]=0;
|
||||
show_time();
|
||||
do_nmea();
|
||||
hexstring(0x12345678);
|
||||
return(0);
|
||||
}
|
||||
//-------------------------------------------------------------------------
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
//
|
||||
// Copyright (c) 2015 David Welch dwelch@dwelch.com
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
//-------------------------------------------------------------------------
|
||||
49
gps_clock/novectors.s
Normal file
49
gps_clock/novectors.s
Normal file
@@ -0,0 +1,49 @@
|
||||
|
||||
.globl _start
|
||||
_start:
|
||||
ldr sp,stack_start
|
||||
ldr r0,thumb_start_add
|
||||
bx r0
|
||||
|
||||
stack_start: .word 0x8000
|
||||
thumb_start_add: .word thumb_start
|
||||
.word 0
|
||||
.word 0
|
||||
|
||||
.thumb
|
||||
.thumb_func
|
||||
thumb_start:
|
||||
bl notmain
|
||||
hang: b hang
|
||||
|
||||
.thumb_func
|
||||
.globl PUT32
|
||||
PUT32:
|
||||
str r1,[r0]
|
||||
bx lr
|
||||
|
||||
.thumb_func
|
||||
.globl GET32
|
||||
GET32:
|
||||
ldr r0,[r0]
|
||||
bx lr
|
||||
|
||||
.thumb_func
|
||||
.globl dummy
|
||||
dummy:
|
||||
bx lr
|
||||
|
||||
|
||||
|
||||
|
||||
;@-------------------------------------------------------------------------
|
||||
;@
|
||||
;@ Copyright (c) 2012 David Welch dwelch@dwelch.com
|
||||
;@
|
||||
;@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
;@
|
||||
;@ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
;@
|
||||
;@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
;@
|
||||
;@-------------------------------------------------------------------------
|
||||
Reference in New Issue
Block a user