| 12345678910111213141516171819202122232425 |
- #include "tmsgheaders.h"
- #define TPL0202_CMD_BITP 12
- #define TPL0202_CMD_BITM (0x3 << TPL0202_CMD_BITP)
- #define TPL0202_CMD_WR_WIPER_REG_ENUM 0x0
- #define TPL0202_CMD_WR_NV_REG_ENUM 0x1
- #define TPL0202_CMD_COPY_WIPER_TO_NV_ENUM 0x2
- #define TPL0202_CMD_COPY_NV_TO_WIPER_ENUM 0x3
- #define TPL0202_ADR_BITP 8
- #define TPL0202_ADR_BITM (0x3<<TPL0202_ADR_BITP)
- #define TPL0202_ADR_A_ENUM 0x1
- #define TPL0202_ADR_B_ENUM 0x2
- #define TPL0202_ADR_AB_ENUM 0x3
- #define TPL0202_DATA_BITP 0
- #define TPL0202_DATA_BITM (0xFF<<TPL0202_DATA_BITP)
- extern uint32_t pot_array [2];
- void potentiometer_set(void *bar1, uint8_t pot_val_ch_a, uint8_t pot_val_ch_b);
- void potentiometer_set_qspi(uint8_t pot_offset, uint8_t pot_slope );
- void potentiometer_set_offset (void *bar1, uint8_t pot_offset);
- void potentiometer_set_slope ( void *bar1, uint8_t pot_slope);
|