diff options
author | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-07-28 11:03:33 +0000 |
---|---|---|
committer | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-07-28 11:03:33 +0000 |
commit | 9d0d7022e5f789000de7ac062e8da33a44d5b7f2 (patch) | |
tree | 5bd50005a612dd0051b81629cbb3b03e7c2d503b /openpcd/firmware/src/start/Cstartup.S | |
parent | 50058870424db13cffcbb687013d128996b53de1 (diff) |
- move all librfid-imported header files into include/librfid/
- import rfid_layer2_iso14443a.c from librfid
- fix definition of 14443A ATQA to be __attribute__((packed));
- fix SPI DMA routines (hopefully!)
- introduce new 'hexdump' function for creating hexdump debug output
- move clearing SPI/UDP interrupt code to end of function to prevent re-entrance
- declare spi_transceive() functions static
- add hexdump debug output to DMA spi_transceive
- remove tx_buf/rx_buf buffers and rather use spi_inbuf/spi_outbuf
- add new "main_analog.c" program to use 'q' and 'w' to select analog output
- increase interrupt stack to 1k
- add _main_dbgu() function to allow 'main' programs to extend supported dbgu cmds
- remove old DEBUG_TOGGLE_LED code from main.c
- print ATQA that is received after successful REQA transceive in main_reqa.c
- add OLIMEX make define so we can do "make TARGET=main_dumbreader OLIMEX=1"
git-svn-id: https://svn.openpcd.org:2342/trunk@51 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'openpcd/firmware/src/start/Cstartup.S')
-rw-r--r-- | openpcd/firmware/src/start/Cstartup.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openpcd/firmware/src/start/Cstartup.S b/openpcd/firmware/src/start/Cstartup.S index d13dbd8..785a18c 100644 --- a/openpcd/firmware/src/start/Cstartup.S +++ b/openpcd/firmware/src/start/Cstartup.S @@ -16,7 +16,7 @@ //*- 1.1 01/Apr/05 JPP : save SPSR //*-----------------------------------------------------------------------------*/ - .equ IRQ_Stack_Size, 0x00000060 + .equ IRQ_Stack_Size, 0x00000400 /* #include "AT91SAM7S64_inc.h" */ |