config.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #ifndef _CONFIG_H
  2. #define _CONFIG_H
  3. #include "Configuration_prusa.h"
  4. #include "pins.h"
  5. #define IR_SENSOR_ANALOG (defined(VOLT_IR_PIN) && defined(IR_SENSOR))
  6. //ADC configuration
  7. #if !IR_SENSOR_ANALOG
  8. #define ADC_CHAN_MSK 0b0000001001011111 //used AD channels bit mask (0,1,2,3,4,6,9)
  9. #define ADC_DIDR_MSK 0b0000001001011111 //AD channels DIDR mask (1 ~ disabled digital input)
  10. #define ADC_CHAN_CNT 7 //number of used channels)
  11. #else //!IR_SENSOR_ANALOG
  12. #define ADC_CHAN_MSK 0b0000001101011111 //used AD channels bit mask (0,1,2,3,4,6,8,9)
  13. #define ADC_DIDR_MSK 0b0000001001011111 //AD channels DIDR mask (1 ~ disabled digital input)
  14. #define ADC_CHAN_CNT 8 //number of used channels)
  15. #endif //!IR_SENSOR_ANALOG
  16. #define ADC_OVRSAMPL 16 //oversampling multiplier
  17. #define ADC_CALLBACK adc_ready //callback function ()
  18. //SWI2C configuration
  19. #define SWI2C
  20. //#define SWI2C_SDA 20 //SDA on P3
  21. //#define SWI2C_SCL 21 //SCL on P3
  22. #define SWI2C_A8
  23. #define SWI2C_DEL 20 //2us clock delay
  24. #define SWI2C_TMO 2048 //2048 cycles timeout
  25. //PAT9125 configuration
  26. #define PAT9125_SWI2C
  27. #define PAT9125_I2C_ADDR 0x75 //ID=LO
  28. //#define PAT9125_I2C_ADDR 0x79 //ID=HI
  29. //#define PAT9125_I2C_ADDR 0x73 //ID=NC
  30. #define PAT9125_XRES 0
  31. #define PAT9125_YRES 240
  32. //SM4 configuration
  33. #define SM4_DEFDELAY 500 //default step delay [us]
  34. //TMC2130 - Trinamic stepper driver
  35. //pinout - hardcoded
  36. //spi:
  37. #define TMC2130_SPI_RATE 0 // fosc/4 = 4MHz
  38. #define TMC2130_SPCR SPI_SPCR(TMC2130_SPI_RATE, 1, 1, 1, 0)
  39. #define TMC2130_SPSR SPI_SPSR(TMC2130_SPI_RATE)
  40. //W25X20CL configuration
  41. //pinout:
  42. #define W25X20CL_PIN_CS 32
  43. //spi:
  44. #define W25X20CL_SPI_RATE 0 // fosc/4 = 4MHz
  45. #define W25X20CL_SPCR SPI_SPCR(W25X20CL_SPI_RATE, 1, 1, 1, 0)
  46. #define W25X20CL_SPSR SPI_SPSR(W25X20CL_SPI_RATE)
  47. //LANG - Multi-language support
  48. //define LANG_MODE 0 // primary language only
  49. #define LANG_MODE 1 // sec. language support
  50. #define LANG_SIZE_RESERVED 0x3000 // reserved space for secondary language (12288 bytes)
  51. #endif //_CONFIG_H