]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
Fixed up last gcc 4.1 and 4.4 warnings, added OpenOCD wiggler config
authord18c7db <d18c7db@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Tue, 8 Sep 2009 10:08:43 +0000 (10:08 +0000)
committerd18c7db <d18c7db@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Tue, 8 Sep 2009 10:08:43 +0000 (10:08 +0000)
armsrc/appmain.c
tools/at91sam7s256-wiggler.cfg [new file with mode: 0644]

index 5377104e029dfef94c4940938a4c0e0f13969a35..9a692128c328f978d290910785926b3eff9abc4e 100644 (file)
@@ -239,7 +239,7 @@ void ReadMem(int addr)
 /* osimage version information is linked in */
 extern struct version_information version_information;
 /* bootrom version information is pointed to from _bootphase1_version_pointer */
-extern char _bootphase1_version_pointer, _flash_start, _flash_end;
+extern char *_bootphase1_version_pointer, _flash_start, _flash_end;
 void SendVersion(void)
 {
        char temp[48]; /* Limited data payload in USB packets */
@@ -734,14 +734,14 @@ void AppMain(void)
        LCDInit();
 
        // test text on different colored backgrounds
-       LCDString(" The quick brown fox  ",     &FONT6x8,1,1+8*0,WHITE  ,BLACK );
-       LCDString("  jumped over the     ",     &FONT6x8,1,1+8*1,BLACK  ,WHITE );
-       LCDString("     lazy dog.        ",     &FONT6x8,1,1+8*2,YELLOW ,RED   );
-       LCDString(" AaBbCcDdEeFfGgHhIiJj ",     &FONT6x8,1,1+8*3,RED    ,GREEN );
-       LCDString(" KkLlMmNnOoPpQqRrSsTt ",     &FONT6x8,1,1+8*4,MAGENTA,BLUE  );
-       LCDString("UuVvWwXxYyZz0123456789",     &FONT6x8,1,1+8*5,BLUE   ,YELLOW);
-       LCDString("`-=[]_;',./~!@#$%^&*()",     &FONT6x8,1,1+8*6,BLACK  ,CYAN  );
-       LCDString("     _+{}|:\\\"<>?     ",&FONT6x8,1,1+8*7,BLUE  ,MAGENTA);
+       LCDString(" The quick brown fox  ",     (char *)&FONT6x8,1,1+8*0,WHITE  ,BLACK );
+       LCDString("  jumped over the     ",     (char *)&FONT6x8,1,1+8*1,BLACK  ,WHITE );
+       LCDString("     lazy dog.        ",     (char *)&FONT6x8,1,1+8*2,YELLOW ,RED   );
+       LCDString(" AaBbCcDdEeFfGgHhIiJj ",     (char *)&FONT6x8,1,1+8*3,RED    ,GREEN );
+       LCDString(" KkLlMmNnOoPpQqRrSsTt ",     (char *)&FONT6x8,1,1+8*4,MAGENTA,BLUE  );
+       LCDString("UuVvWwXxYyZz0123456789",     (char *)&FONT6x8,1,1+8*5,BLUE   ,YELLOW);
+       LCDString("`-=[]_;',./~!@#$%^&*()",     (char *)&FONT6x8,1,1+8*6,BLACK  ,CYAN  );
+       LCDString("     _+{}|:\\\"<>?     ",(char *)&FONT6x8,1,1+8*7,BLUE  ,MAGENTA);
 
        // color bands
        LCDFill(0, 1+8* 8, 132, 8, BLACK);
diff --git a/tools/at91sam7s256-wiggler.cfg b/tools/at91sam7s256-wiggler.cfg
new file mode 100644 (file)
index 0000000..83156fe
--- /dev/null
@@ -0,0 +1,39 @@
+telnet_port 4444\r
+gdb_port 3333\r
+\r
+interface parport\r
+parport_port 0x378\r
+parport_cable wiggler\r
+jtag_speed 0\r
+jtag_nsrst_delay 200\r
+jtag_ntrst_delay 200\r
+\r
+reset_config srst_only srst_pulls_trst\r
+\r
+jtag newtap sam7x256 cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id 0x3f0f0f0f\r
+#jtag newtap xilinx tap -irlen 6 -ircapture 0x1 -irmask 0xf -expected-id 0x1c1a093\r
+\r
+target create sam7x256.cpu arm7tdmi -endian little -chain-position sam7x256.cpu -variant arm7tdmi\r
+sam7x256.cpu configure -event reset-init {\r
+       # disable watchdog\r
+       mww 0xfffffd44 0x00008000\r
+       # enable user reset\r
+       mww 0xfffffd08 0xa5000001\r
+       # CKGR_MOR : enable the main oscillator\r
+       mww 0xfffffc20 0x00000601\r
+       sleep 10\r
+       # CKGR_PLLR:  16 MHz * (5+1) /1 = 96Mhz\r
+       mww 0xfffffc2c 0x00051c01\r
+       sleep 10\r
+       # PMC_MCKR : MCK = PLL / 2 = 48 MHz\r
+       mww 0xfffffc30 0x00000007\r
+       sleep 10\r
+       # MC_FMR: flash mode (FWS=1,FMCN=60)\r
+       mww 0xffffff60 0x003c0100\r
+       sleep 100\r
+}\r
+\r
+gdb_memory_map enable\r
+\r
+sam7x256.cpu configure -work-area-virt 0 -work-area-phys 0x00200000 -work-area-size 0x10000 -work-area-backup 0\r
+flash bank at91sam7 0 0 0 0 0\r
Impressum, Datenschutz