diff options
author | Rodrigo L. Rosa <rodrigorosa.LG@gmail.com> | 2011-08-30 13:49:44 -0700 |
---|---|---|
committer | Rodrigo L. Rosa <rodrigorosa.LG@gmail.com> | 2011-08-30 15:09:23 -0700 |
commit | 2aa14db67747d25df1f072f262dbc98e2169f718 (patch) | |
tree | 83108f52d8a914eaf0ef35756af7a708092f0f6b /src | |
parent | 67bb8a6cb208a7529045fc11b1dc30adf98d928f (diff) |
def syntax to match tap irlen
the master tap has a 4 bit irlen
changed the instructions to be 4 bit, ie, removed the zeros.
it makes it clearer to interpret.
Diffstat (limited to 'src')
-rw-r--r-- | src/target/dsp5680xx.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/dsp5680xx.h b/src/target/dsp5680xx.h index 599fd68e..6c86ef80 100644 --- a/src/target/dsp5680xx.h +++ b/src/target/dsp5680xx.h @@ -69,10 +69,10 @@ //---------------------------------------------------------------- // Master TAP instructions from MC56F8000RM.pdf //---------------------------------------------------------------- -#define MASTER_TAP_CMD_BYPASS 0xFF -#define MASTER_TAP_CMD_IDCODE 0x02 -#define MASTER_TAP_CMD_TLM_SEL 0x05 -#define MASTER_TAP_CMD_FLASH_ERASE 0x08 +#define MASTER_TAP_CMD_BYPASS 0xF +#define MASTER_TAP_CMD_IDCODE 0x2 +#define MASTER_TAP_CMD_TLM_SEL 0x5 +#define MASTER_TAP_CMD_FLASH_ERASE 0x8 //---------------------------------------------------------------- //---------------------------------------------------------------- |