config.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #ifndef _CONFIG_H
  2. #define _CONFIG_H
  3. #include "Configuration_prusa.h"
  4. #include "pins.h"
  5. #if (defined(VOLT_IR_PIN) && defined(IR_SENSOR))
  6. # define IR_SENSOR_ANALOG
  7. #endif
  8. //ADC configuration
  9. #ifndef IR_SENSOR_ANALOG
  10. #define ADC_CHAN_MSK 0b0000001001011111 //used AD channels bit mask (0,1,2,3,4,6,9)
  11. #define ADC_DIDR_MSK 0b0000001001011111 //AD channels DIDR mask (1 ~ disabled digital input)
  12. #define ADC_CHAN_CNT 7 //number of used channels)
  13. #else //!IR_SENSOR_ANALOG
  14. #define ADC_CHAN_MSK 0b0000001101011111 //used AD channels bit mask (0,1,2,3,4,6,8,9)
  15. #define ADC_DIDR_MSK 0b0000001001011111 //AD channels DIDR mask (1 ~ disabled digital input)
  16. #define ADC_CHAN_CNT 8 //number of used channels)
  17. #endif //!IR_SENSOR_ANALOG
  18. #define ADC_OVRSAMPL 16 //oversampling multiplier
  19. #define ADC_CALLBACK adc_ready //callback function ()
  20. //SWI2C configuration
  21. //#define SWI2C_SDA 20 //SDA on P3
  22. //#define SWI2C_SCL 21 //SCL on P3
  23. #define SWI2C_A8
  24. #define SWI2C_DEL 20 //2us clock delay
  25. #define SWI2C_TMO 2048 //2048 cycles timeout
  26. //PAT9125 configuration
  27. //#define PAT9125_SWSPI // software SPI mode (incomplete)
  28. #ifdef SWI2C_SCL
  29. #define PAT9125_SWI2C // software I2C mode
  30. #else
  31. #define PAT9125_I2C // hardware I2C mode
  32. #endif
  33. #define PAT9125_I2C_ADDR 0x75 //ID=LO
  34. //#define PAT9125_I2C_ADDR 0x79 //ID=HI
  35. //#define PAT9125_I2C_ADDR 0x73 //ID=NC
  36. #define PAT9125_XRES 0
  37. #define PAT9125_YRES 240 // maximum resolution (5*X cpi)
  38. #define PAT9124_YRES_MM (5*PAT9125_YRES/25.4) // counts per mm
  39. //SM4 configuration
  40. #define SM4_DEFDELAY 500 //default step delay [us]
  41. //TMC2130 - Trinamic stepper driver
  42. //pinout - hardcoded
  43. //spi:
  44. #define TMC2130_SPI_RATE 0 // fosc/4 = 4MHz
  45. #define TMC2130_SPCR SPI_SPCR(TMC2130_SPI_RATE, 1, 1, 1, 0)
  46. #define TMC2130_SPSR SPI_SPSR(TMC2130_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). Maximum 32768 bytes
  51. #if (LANG_SIZE_RESERVED % 256)
  52. #error "LANG_SIZE_RESERVED should be a multiple of a page size"
  53. #endif
  54. //Community language support
  55. #define COMMUNITY_LANG_GROUP 1
  56. #if (COMMUNITY_LANG_GROUP == 1)
  57. #define COMMUNITY_LANG_GROUP1_NL // Community Dutch language
  58. #define COMMUNITY_LANG_GROUP1_RO // Community Romanian language
  59. #define COMMUNITY_LANG_GROUP1_HU // Community Hungarian language
  60. #define COMMUNITY_LANG_GROUP1_HR // Community Croatian language
  61. #define COMMUNITY_LANG_GROUP1_SK // Community Slovak language
  62. #define COMMUNITY_LANG_GROUP1_SV // Community Swedish language
  63. #define COMMUNITY_LANG_GROUP1_NO // Community Norwegian language
  64. //#define COMMUNITY_LANG_GROUP1_DA // Community Danish language
  65. //#define COMMUNITY_LANG_GROUP1_SL // Community Slovanian language
  66. //#define COMMUNITY_LANG_GROUP1_LB // Community Luxembourgish language
  67. //#define COMMUNITY_LANG_GROUP1_LT // Community Lithuanian language
  68. //#define COMMUNITY_LANG_GROUP1_QR // Community new language //..use this as a template and replace 'QR'
  69. #endif
  70. #if (COMMUNITY_LANG_GROUP >=1 )
  71. #define COMMUNITY_LANGUAGE_SUPPORT
  72. #endif
  73. // Sanity checks for correct configuration of XFLASH_DUMP options
  74. #if defined(XFLASH_DUMP) && !defined(XFLASH)
  75. #error "XFLASH_DUMP requires XFLASH support"
  76. #endif
  77. #if (defined(MENU_DUMP) || defined(EMERGENCY_DUMP)) && !defined(XFLASH_DUMP)
  78. #error "MENU_DUMP and EMERGENCY_DUMP require XFLASH_DUMP"
  79. #endif
  80. // Support for serial dumps is mutually exclusive with XFLASH_DUMP features
  81. #if defined(EMERGENCY_DUMP) && defined(EMERGENCY_SERIAL_DUMP)
  82. #error "EMERGENCY_DUMP and EMERGENCY_SERIAL_DUMP are mutually exclusive"
  83. #endif
  84. #if defined(MENU_DUMP) && defined(MENU_SERIAL_DUMP)
  85. #error "MENU_DUMP and MENU_SERIAL_DUMP are mutually exclusive"
  86. #endif
  87. // Reduce internal duplication
  88. #if defined(EMERGENCY_DUMP) || defined(EMERGENCY_SERIAL_DUMP)
  89. #define EMERGENCY_HANDLERS
  90. #endif
  91. #endif //_CONFIG_H