• Setting Port Bit with ARTX
    I'm writing a library to set a Port BIT , that can be used on ARTX for xc167 . I use a function with parameters "PortAddr" and "PortBit" : *(PortAddr) |= ( 1<<PortBit ); and analog function for...
  • Setting Port Bit with ARTX
    I'm writing a library to set a Port BIT , that can be used on ARTX for xc167 . I use a function with parameters "PortAddr" and "PortBit" : *(PortAddr) |= ( 1<<PortBit ); and analog function for...
  • C16x debugger: break when an I/O port bit is set
    Is there a way to set a breakpoint that breaks when certain bit of an I/O port is being set? E.g. I would like the program execution on the debugger to break when P2.6 = 1
  • C16x debugger: break when an I/O port bit is set
    Is there a way to set a breakpoint that breaks when certain bit of an I/O port is being set? E.g. I would like the program execution on the debugger to break when P2.6 = 1
  • Asm bit banding macro
    Good day. I try to create asm bit bannding macro. it's only macro and invocation code: MACRO ;macro definition sram_bit_band_set $p1,$p2 LDR R4,=0x22000000+p1*32+4*p2 MOV R5,#1 STR R5,[R4]...