55157640c5
postbuild.sh, make_lang.sh - fixed (id and offset calculation) language.c, language.h - fixed (==||==) config.h - reserved space for _SEC_LANG changed Marlin_main.cpp - debug output + hardcoded lang_select(1) //means cz
29 lines
999 B
C
29 lines
999 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
|
|
//ADC configuration
|
|
#define ADC_CHAN_MSK 0b0000001001011111 //used AD channels bit mask (0,1,2,3,4,6,9)
|
|
#define ADC_CHAN_CNT 7 //number of used channels)
|
|
#define ADC_OVRSAMPL 16 //oversampling multiplier
|
|
#define ADC_CALLBACK adc_ready //callback function ()
|
|
|
|
//SM4 configuration
|
|
#define SM4_DEFDELAY 500 //default step delay [us]
|
|
|
|
//TMC2130 - Trinamic stepper driver
|
|
//pinout - hardcoded
|
|
//spi:
|
|
#define TMC2130_SPI_RATE 0 // fosc/4 = 4MHz
|
|
#define TMC2130_SPCR SPI_SPCR(TMC2130_SPI_RATE, 1, 1, 1, 0)
|
|
#define TMC2130_SPSR SPI_SPSR(TMC2130_SPI_RATE)
|
|
|
|
//LANG - Multi-language support
|
|
//#define LANG_MODE 0 // primary language only
|
|
#define LANG_MODE 1 // sec. language support
|
|
#define LANG_SIZE_RESERVED 0x2700 // reserved space for secondary language (~10kb)
|
|
//#define LANG_SIZE_RESERVED 0x1ef8 // reserved space for secondary language (~10kb)
|
|
|
|
|
|
#endif //_CONFIG_H
|