dac.h 218 B

1234567891011
  1. #ifndef DAC_H_
  2. #include "ti/driverlib/dl_i2c.h"
  3. #include "ti_msp_dl_config.h"
  4. #include <stdbool.h>
  5. #define DAC_TARGET_BASE_ADDRESS (0x60)
  6. bool DAC_fastWrite(uint16_t channel_a_value);
  7. void DAC_UpdateOutput();
  8. #endif