Configuration.c 370 B

123456789101112
  1. #include <stdint.h>
  2. #include <avr/pgmspace.h>
  3. //!?! #include "Configuration.h"
  4. #include "Configuration_prusa.h"
  5. const uint16_t _nPrinterType PROGMEM=PRINTER_TYPE;
  6. const char _sPrinterName[] PROGMEM=PRINTER_NAME;
  7. const uint16_t _nPrinterMmuType PROGMEM=PRINTER_MMU_TYPE;
  8. const char _sPrinterMmuName[] PROGMEM=PRINTER_MMU_NAME;
  9. uint16_t nPrinterType;
  10. PGM_P sPrinterName;