X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Fapps%2Fjtag%2Fjtag430x2.c;fp=firmware%2Fapps%2Fjtag%2Fjtag430x2.c;h=f499de2ce47a7f98dc08faaeb36a53d35460a5b6;hp=d2bb194732f0b827848a24f5e7cb98749e1014ca;hb=b1ae86eaae79309b8993c505d85b915dcac546b9;hpb=33c548994df07e43f25464b7d3f24642e9142a99 diff --git a/firmware/apps/jtag/jtag430x2.c b/firmware/apps/jtag/jtag430x2.c index d2bb194..f499de2 100644 --- a/firmware/apps/jtag/jtag430x2.c +++ b/firmware/apps/jtag/jtag430x2.c @@ -209,7 +209,15 @@ void jtag430x2handle(unsigned char app, //MSP430 or MSP430X if(jtagid==MSP430JTAGID){ jtag430mode=MSP430MODE; - drwidth=16; + + /* So the way this works is that a width of 20 does some + backward-compatibility finagling, causing the correct value + to be exchanged for addresses on 16-bit chips as well as the + new MSP430X chips. (This has only been verified on the + MSP430F2xx family. TODO verify for others.) + */ + + drwidth=20; //Perform a reset and disable watchdog. jtag430_por();