Browse Source

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.
tags/v0.6.0-rc1
Rodrigo L. Rosa 12 years ago
parent
commit
2aa14db677
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/target/dsp5680xx.h

+ 4
- 4
src/target/dsp5680xx.h View File

@@ -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
//----------------------------------------------------------------

//----------------------------------------------------------------


Loading…
Cancel
Save