You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
336 B

  1. /*
  2. * File: DACInterface.h
  3. * Author: JF
  4. *
  5. * Created on February 15, 2025, 12:14 PM
  6. */
  7. #ifndef DACINTERFACE_H
  8. #define DACINTERFACE_H
  9. #define DAC_MAX_VALUE 1023
  10. enum eDACInterfaceChannel
  11. {
  12. BUREAU_DAC_CHANNEL,
  13. CUISINE_DAC_CHANNEL
  14. };
  15. void DACInit();
  16. int DACSetValue(int Channel, int Value);
  17. #endif /* DACINTERFACE_H */