2017-09-15 14:34:34 +00:00
|
|
|
#include "Dcodes.h"
|
|
|
|
#include "Marlin.h"
|
2017-11-16 21:03:36 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_DCODES
|
|
|
|
|
2017-11-16 19:51:50 +00:00
|
|
|
#include "ConfigurationStore.h"
|
2017-09-15 14:34:34 +00:00
|
|
|
#include "cmdqueue.h"
|
2017-10-24 17:45:15 +00:00
|
|
|
#include "pat9125.h"
|
2017-12-20 12:42:20 +00:00
|
|
|
#include "adc.h"
|
|
|
|
#include "temperature.h"
|
2017-11-13 17:45:11 +00:00
|
|
|
#include <avr/wdt.h>
|
|
|
|
|
|
|
|
|
2017-11-20 19:09:54 +00:00
|
|
|
#define FLASHSIZE 0x40000
|
|
|
|
|
2017-11-13 17:45:11 +00:00
|
|
|
#define RAMSIZE 0x2000
|
|
|
|
#define boot_src_addr (*((uint32_t*)(RAMSIZE - 16)))
|
|
|
|
#define boot_dst_addr (*((uint32_t*)(RAMSIZE - 12)))
|
|
|
|
#define boot_copy_size (*((uint16_t*)(RAMSIZE - 8)))
|
|
|
|
#define boot_reserved (*((uint8_t*)(RAMSIZE - 6)))
|
|
|
|
#define boot_app_flags (*((uint8_t*)(RAMSIZE - 5)))
|
|
|
|
#define boot_app_magic (*((uint32_t*)(RAMSIZE - 4)))
|
|
|
|
#define BOOT_APP_FLG_ERASE 0x01
|
|
|
|
#define BOOT_APP_FLG_COPY 0x02
|
|
|
|
#define BOOT_APP_FLG_FLASH 0x04
|
|
|
|
|
2017-11-16 19:51:50 +00:00
|
|
|
extern uint8_t fsensor_log;
|
|
|
|
extern float current_temperature_pinda;
|
|
|
|
extern float axis_steps_per_unit[NUM_AXIS];
|
|
|
|
|
2017-09-15 14:34:34 +00:00
|
|
|
|
2017-11-20 19:09:54 +00:00
|
|
|
inline void print_hex_nibble(uint8_t val)
|
2017-09-14 14:19:49 +00:00
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
putchar((val > 9)?(val - 10 + 'a'):(val + '0'));
|
2017-09-14 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 19:09:54 +00:00
|
|
|
void print_hex_byte(uint8_t val)
|
2017-09-14 14:19:49 +00:00
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
print_hex_nibble(val >> 4);
|
|
|
|
print_hex_nibble(val & 15);
|
2017-09-14 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 19:09:54 +00:00
|
|
|
void print_hex_word(uint16_t val)
|
2017-09-14 14:19:49 +00:00
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
print_hex_byte(val >> 8);
|
|
|
|
print_hex_byte(val & 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_mem(uint32_t address, uint16_t count, uint8_t type, uint8_t countperline = 16)
|
|
|
|
{
|
|
|
|
while (count)
|
|
|
|
{
|
|
|
|
if (type == 2)
|
|
|
|
print_hex_nibble(address >> 16);
|
|
|
|
print_hex_word(address);
|
|
|
|
putchar(' ');
|
|
|
|
uint8_t count_line = countperline;
|
|
|
|
while (count && count_line)
|
|
|
|
{
|
|
|
|
uint8_t data = 0;
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case 0: data = *((uint8_t*)address++); break;
|
|
|
|
case 1: data = eeprom_read_byte((uint8_t*)address++); break;
|
|
|
|
case 2: data = pgm_read_byte_far((uint8_t*)address++); break;
|
|
|
|
}
|
|
|
|
putchar(' ');
|
|
|
|
print_hex_byte(data);
|
|
|
|
count_line--;
|
|
|
|
count--;
|
|
|
|
}
|
|
|
|
putchar('\n');
|
|
|
|
}
|
2017-09-14 14:19:49 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 19:09:54 +00:00
|
|
|
//#define LOG(args...) printf(args)
|
|
|
|
#define LOG(args...)
|
|
|
|
|
2017-09-14 14:19:49 +00:00
|
|
|
int parse_hex(char* hex, uint8_t* data, int count)
|
|
|
|
{
|
|
|
|
int parsed = 0;
|
|
|
|
while (*hex)
|
|
|
|
{
|
|
|
|
if (count && (parsed >= count)) break;
|
|
|
|
char c = *(hex++);
|
|
|
|
if (c == ' ') continue;
|
|
|
|
if (c == '\n') break;
|
|
|
|
uint8_t val = 0x00;
|
|
|
|
if ((c >= '0') && (c <= '9')) val |= ((c - '0') << 4);
|
|
|
|
else if ((c >= 'a') && (c <= 'f')) val |= ((c - 'a' + 10) << 4);
|
|
|
|
else return -parsed;
|
|
|
|
c = *(hex++);
|
|
|
|
if ((c >= '0') && (c <= '9')) val |= (c - '0');
|
|
|
|
else if ((c >= 'a') && (c <= 'f')) val |= (c - 'a' + 10);
|
|
|
|
else return -parsed;
|
|
|
|
data[parsed] = val;
|
|
|
|
parsed++;
|
|
|
|
}
|
|
|
|
return parsed;
|
|
|
|
}
|
|
|
|
|
2017-11-24 20:53:35 +00:00
|
|
|
void dcode__1()
|
|
|
|
{
|
|
|
|
printf("D-1 - Endless loop\n");
|
|
|
|
cli();
|
|
|
|
while (1);
|
|
|
|
}
|
|
|
|
|
2017-09-15 14:34:34 +00:00
|
|
|
void dcode_0()
|
|
|
|
{
|
2017-09-14 14:19:49 +00:00
|
|
|
if (*(strchr_pointer + 1) == 0) return;
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D0 - Reset\n");
|
2017-09-14 14:19:49 +00:00
|
|
|
if (code_seen('B')) //bootloader
|
2017-11-13 17:45:11 +00:00
|
|
|
{
|
|
|
|
cli();
|
|
|
|
wdt_enable(WDTO_15MS);
|
|
|
|
while(1);
|
|
|
|
}
|
2017-09-14 14:19:49 +00:00
|
|
|
else //reset
|
2017-11-13 17:45:11 +00:00
|
|
|
{
|
|
|
|
#ifndef _NO_ASM
|
2017-09-14 14:19:49 +00:00
|
|
|
asm volatile("jmp 0x00000");
|
2017-11-13 17:45:11 +00:00
|
|
|
#endif //_NO_ASM
|
|
|
|
}
|
2017-09-15 14:34:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcode_1()
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D1 - Clear EEPROM and RESET\n");
|
2017-09-14 14:19:49 +00:00
|
|
|
cli();
|
2017-11-16 19:51:50 +00:00
|
|
|
for (int i = 0; i < 8192; i++)
|
|
|
|
eeprom_write_byte((unsigned char*)i, (unsigned char)0xff);
|
|
|
|
wdt_enable(WDTO_15MS);
|
|
|
|
while(1);
|
2017-09-15 14:34:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcode_2()
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D2 - Read/Write RAM\n");
|
2017-09-14 14:19:49 +00:00
|
|
|
uint16_t address = 0x0000; //default 0x0000
|
|
|
|
uint16_t count = 0x2000; //default 0x2000 (entire ram)
|
|
|
|
if (code_seen('A')) // Address (0x0000-0x1fff)
|
|
|
|
address = (strchr_pointer[1] == 'x')?strtol(strchr_pointer + 2, 0, 16):(int)code_value();
|
|
|
|
if (code_seen('C')) // Count (0x0001-0x2000)
|
|
|
|
count = (int)code_value();
|
|
|
|
address &= 0x1fff;
|
|
|
|
if (count > 0x2000) count = 0x2000;
|
|
|
|
if ((address + count) > 0x2000) count = 0x2000 - address;
|
|
|
|
if (code_seen('X')) // Data
|
|
|
|
{
|
|
|
|
uint8_t data[16];
|
|
|
|
count = parse_hex(strchr_pointer + 1, data, 16);
|
|
|
|
if (count > 0)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < count; i++)
|
|
|
|
*((uint8_t*)(address + i)) = data[i];
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("%d bytes written to RAM at address %04x", count, address);
|
2017-09-14 14:19:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
count = 0;
|
|
|
|
}
|
2017-11-20 19:09:54 +00:00
|
|
|
print_mem(address, count, 0);
|
|
|
|
/* while (count)
|
2017-09-14 14:19:49 +00:00
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
print_hex_word(address);
|
|
|
|
putchar(' ');
|
2017-09-14 14:19:49 +00:00
|
|
|
uint8_t countperline = 16;
|
|
|
|
while (count && countperline)
|
|
|
|
{
|
|
|
|
uint8_t data = *((uint8_t*)address++);
|
2017-11-20 19:09:54 +00:00
|
|
|
putchar(' ');
|
|
|
|
print_hex_byte(data);
|
2017-09-14 14:19:49 +00:00
|
|
|
countperline--;
|
|
|
|
count--;
|
|
|
|
}
|
2017-11-20 19:09:54 +00:00
|
|
|
putchar('\n');
|
|
|
|
}*/
|
2017-09-15 14:34:34 +00:00
|
|
|
}
|
2017-11-16 19:51:50 +00:00
|
|
|
|
2017-09-15 14:34:34 +00:00
|
|
|
void dcode_3()
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D3 - Read/Write EEPROM\n");
|
2017-09-14 14:19:49 +00:00
|
|
|
uint16_t address = 0x0000; //default 0x0000
|
|
|
|
uint16_t count = 0x2000; //default 0x2000 (entire eeprom)
|
|
|
|
if (code_seen('A')) // Address (0x0000-0x1fff)
|
|
|
|
address = (strchr_pointer[1] == 'x')?strtol(strchr_pointer + 2, 0, 16):(int)code_value();
|
|
|
|
if (code_seen('C')) // Count (0x0001-0x2000)
|
|
|
|
count = (int)code_value();
|
|
|
|
address &= 0x1fff;
|
|
|
|
if (count > 0x2000) count = 0x2000;
|
|
|
|
if ((address + count) > 0x2000) count = 0x2000 - address;
|
|
|
|
if (code_seen('X')) // Data
|
|
|
|
{
|
|
|
|
uint8_t data[16];
|
|
|
|
count = parse_hex(strchr_pointer + 1, data, 16);
|
|
|
|
if (count > 0)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < count; i++)
|
|
|
|
eeprom_write_byte((uint8_t*)(address + i), data[i]);
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG(count, DEC);
|
|
|
|
LOG(" bytes written to EEPROM at address ");
|
|
|
|
print_hex_word(address);
|
|
|
|
putchar('\n');
|
2017-09-14 14:19:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
count = 0;
|
|
|
|
}
|
2017-11-20 19:09:54 +00:00
|
|
|
print_mem(address, count, 1);
|
|
|
|
/* while (count)
|
2017-09-14 14:19:49 +00:00
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
print_hex_word(address);
|
|
|
|
putchar(' ');
|
2017-09-14 14:19:49 +00:00
|
|
|
uint8_t countperline = 16;
|
|
|
|
while (count && countperline)
|
|
|
|
{
|
|
|
|
uint8_t data = eeprom_read_byte((uint8_t*)address++);
|
2017-11-20 19:09:54 +00:00
|
|
|
putchar(' ');
|
|
|
|
print_hex_byte(data);
|
2017-09-14 14:19:49 +00:00
|
|
|
countperline--;
|
|
|
|
count--;
|
|
|
|
}
|
2017-11-20 19:09:54 +00:00
|
|
|
putchar('\n');
|
|
|
|
}*/
|
2017-09-15 14:34:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcode_4()
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D4 - Read/Write PIN\n");
|
2017-09-14 14:19:49 +00:00
|
|
|
if (code_seen('P')) // Pin (0-255)
|
|
|
|
{
|
|
|
|
int pin = (int)code_value();
|
|
|
|
if ((pin >= 0) && (pin <= 255))
|
|
|
|
{
|
|
|
|
if (code_seen('F')) // Function in/out (0/1)
|
|
|
|
{
|
|
|
|
int fnc = (int)code_value();
|
|
|
|
if (fnc == 0) pinMode(pin, INPUT);
|
|
|
|
else if (fnc == 1) pinMode(pin, OUTPUT);
|
|
|
|
}
|
|
|
|
if (code_seen('V')) // Value (0/1)
|
|
|
|
{
|
|
|
|
int val = (int)code_value();
|
|
|
|
if (val == 0) digitalWrite(pin, LOW);
|
|
|
|
else if (val == 1) digitalWrite(pin, HIGH);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int val = (digitalRead(pin) != LOW)?1:0;
|
2017-11-20 19:09:54 +00:00
|
|
|
printf("PIN%d=%d", pin, val);
|
2017-09-14 14:19:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-20 19:09:54 +00:00
|
|
|
/*
|
2017-11-13 17:45:11 +00:00
|
|
|
void dcode_5()
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D5 - Read/Write FLASH\n");
|
2017-11-13 17:45:11 +00:00
|
|
|
uint32_t address = 0x0000; //default 0x0000
|
|
|
|
uint16_t count = 0x0400; //default 0x0400 (1kb block)
|
|
|
|
if (code_seen('A')) // Address (0x00000-0x3ffff)
|
|
|
|
address = (strchr_pointer[1] == 'x')?strtol(strchr_pointer + 2, 0, 16):(int)code_value();
|
|
|
|
if (code_seen('C')) // Count (0x0001-0x2000)
|
|
|
|
count = (int)code_value();
|
|
|
|
address &= 0x3ffff;
|
|
|
|
if (count > 0x2000) count = 0x2000;
|
|
|
|
if ((address + count) > 0x40000) count = 0x40000 - address;
|
|
|
|
bool bErase = false;
|
|
|
|
bool bCopy = false;
|
|
|
|
if (code_seen('E')) //Erase
|
|
|
|
bErase = true;
|
|
|
|
uint8_t data[16];
|
|
|
|
if (code_seen('X')) // Data
|
|
|
|
{
|
|
|
|
count = parse_hex(strchr_pointer + 1, data, 16);
|
|
|
|
if (count > 0) bCopy = true;
|
|
|
|
}
|
|
|
|
if (bErase || bCopy)
|
|
|
|
{
|
|
|
|
if (bErase)
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG(count, DEC);
|
|
|
|
LOG(" bytes of FLASH at address ");
|
|
|
|
print_hex_word(address);
|
|
|
|
putchar(" will be erased\n");
|
2017-11-13 17:45:11 +00:00
|
|
|
}
|
|
|
|
if (bCopy)
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG(count, DEC);
|
|
|
|
LOG(" bytes will be written to FLASH at address ");
|
|
|
|
print_hex_word(address);
|
|
|
|
putchar('\n');
|
2017-11-13 17:45:11 +00:00
|
|
|
}
|
|
|
|
cli();
|
|
|
|
boot_app_magic = 0x55aa55aa;
|
|
|
|
boot_app_flags = (bErase?(BOOT_APP_FLG_ERASE):0) | (bCopy?(BOOT_APP_FLG_COPY):0);
|
|
|
|
boot_copy_size = (uint16_t)count;
|
|
|
|
boot_dst_addr = (uint32_t)address;
|
|
|
|
boot_src_addr = (uint32_t)(&data);
|
|
|
|
wdt_enable(WDTO_15MS);
|
|
|
|
while(1);
|
|
|
|
}
|
|
|
|
while (count)
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
print_hex_nibble(address >> 16);
|
|
|
|
print_hex_word(address);
|
|
|
|
putchar(' ');
|
2017-11-13 17:45:11 +00:00
|
|
|
uint8_t countperline = 16;
|
|
|
|
while (count && countperline)
|
|
|
|
{
|
|
|
|
uint8_t data = pgm_read_byte_far((uint8_t*)address++);
|
2017-11-20 19:09:54 +00:00
|
|
|
putchar(' ');
|
|
|
|
print_hex_byte(data);
|
2017-11-13 17:45:11 +00:00
|
|
|
countperline--;
|
|
|
|
count--;
|
|
|
|
}
|
2017-11-20 19:09:54 +00:00
|
|
|
putchar('\n');
|
2017-11-13 17:45:11 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-20 19:09:54 +00:00
|
|
|
*/
|
2017-11-13 17:45:11 +00:00
|
|
|
|
|
|
|
void dcode_6()
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D6 - Read/Write external FLASH\n");
|
2017-11-16 19:51:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcode_7()
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D7 - Read/Write Bootloader\n");
|
2017-11-16 19:51:50 +00:00
|
|
|
/*
|
2017-11-13 17:45:11 +00:00
|
|
|
cli();
|
|
|
|
boot_app_magic = 0x55aa55aa;
|
|
|
|
boot_app_flags = BOOT_APP_FLG_ERASE | BOOT_APP_FLG_COPY | BOOT_APP_FLG_FLASH;
|
|
|
|
boot_copy_size = (uint16_t)0xc00;
|
|
|
|
boot_src_addr = (uint32_t)0x0003e400;
|
|
|
|
boot_dst_addr = (uint32_t)0x0003f400;
|
|
|
|
wdt_enable(WDTO_15MS);
|
|
|
|
while(1);
|
2017-11-16 19:51:50 +00:00
|
|
|
*/
|
2017-11-13 17:45:11 +00:00
|
|
|
}
|
|
|
|
|
2017-11-16 19:51:50 +00:00
|
|
|
void dcode_8()
|
2017-11-13 17:45:11 +00:00
|
|
|
{
|
2017-11-27 06:09:53 +00:00
|
|
|
printf_P(PSTR("D8 - Read/Write PINDA\n"));
|
2017-11-16 19:51:50 +00:00
|
|
|
uint8_t cal_status = calibration_status_pinda();
|
|
|
|
float temp_pinda = current_temperature_pinda;
|
|
|
|
float offset_z = temp_compensation_pinda_thermistor_offset(temp_pinda);
|
|
|
|
if ((strchr_pointer[1+1] == '?') || (strchr_pointer[1+1] == 0))
|
|
|
|
{
|
2017-11-27 06:09:53 +00:00
|
|
|
printf_P(PSTR("cal_status=%d\n"), cal_status?1:0);
|
2017-11-16 19:51:50 +00:00
|
|
|
for (uint8_t i = 0; i < 6; i++)
|
|
|
|
{
|
|
|
|
uint16_t offs = 0;
|
|
|
|
if (i > 0) offs = eeprom_read_word(((uint16_t*)EEPROM_PROBE_TEMP_SHIFT) + (i - 1));
|
2017-11-27 06:09:53 +00:00
|
|
|
float foffs = ((float)offs) / axis_steps_per_unit[Z_AXIS];
|
|
|
|
offs = 1000 * foffs;
|
|
|
|
printf_P(PSTR("temp_pinda=%dC temp_shift=%dum\n"), 35 + i * 5, offs);
|
2017-11-16 19:51:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strchr_pointer[1+1] == '!')
|
|
|
|
{
|
|
|
|
cal_status = 1;
|
|
|
|
eeprom_write_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA, cal_status);
|
2017-11-27 06:09:53 +00:00
|
|
|
eeprom_write_word(((uint16_t*)EEPROM_PROBE_TEMP_SHIFT) + 0, 8); //40C - 20um - 8usteps
|
|
|
|
eeprom_write_word(((uint16_t*)EEPROM_PROBE_TEMP_SHIFT) + 1, 24); //45C - 60um - 24usteps
|
|
|
|
eeprom_write_word(((uint16_t*)EEPROM_PROBE_TEMP_SHIFT) + 2, 48); //50C - 120um - 48usteps
|
|
|
|
eeprom_write_word(((uint16_t*)EEPROM_PROBE_TEMP_SHIFT) + 3, 80); //55C - 200um - 80usteps
|
|
|
|
eeprom_write_word(((uint16_t*)EEPROM_PROBE_TEMP_SHIFT) + 4, 120); //60C - 300um - 120usteps
|
2017-11-16 19:51:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (code_seen('P')) // Pinda temperature [C]
|
|
|
|
temp_pinda = code_value();
|
|
|
|
offset_z = temp_compensation_pinda_thermistor_offset(temp_pinda);
|
|
|
|
if (code_seen('Z')) // Z Offset [mm]
|
|
|
|
{
|
|
|
|
offset_z = code_value();
|
|
|
|
}
|
|
|
|
}
|
2017-11-27 06:09:53 +00:00
|
|
|
printf_P(PSTR("temp_pinda=%d offset_z=%d.%03d\n"), (int)temp_pinda, (int)offset_z, ((int)(1000 * offset_z) % 1000));
|
2017-11-16 19:51:50 +00:00
|
|
|
}
|
|
|
|
|
2017-12-20 12:42:20 +00:00
|
|
|
const char* dcode_9_ADC_name(uint8_t i)
|
|
|
|
{
|
|
|
|
switch (i)
|
|
|
|
{
|
|
|
|
case 0: return PSTR("TEMP_HEATER0");
|
|
|
|
case 1: return PSTR("TEMP_HEATER1");
|
|
|
|
case 2: return PSTR("TEMP_BED");
|
|
|
|
case 3: return PSTR("TEMP_PINDA");
|
|
|
|
case 4: return PSTR("VOLT_PWR");
|
|
|
|
case 5: return PSTR("TEMP_AMBIENT");
|
|
|
|
case 6: return PSTR("VOLT_BED");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern int current_temperature_raw[EXTRUDERS];
|
|
|
|
extern int current_temperature_bed_raw;
|
|
|
|
extern int current_temperature_raw_pinda;
|
|
|
|
extern int current_temperature_raw_ambient;
|
|
|
|
extern int current_voltage_raw_pwr;
|
|
|
|
extern int current_voltage_raw_bed;
|
|
|
|
uint16_t dcode_9_ADC_val(uint8_t i)
|
|
|
|
{
|
|
|
|
switch (i)
|
|
|
|
{
|
|
|
|
case 0: return current_temperature_raw[0];
|
|
|
|
case 1: return 0;
|
|
|
|
case 2: return current_temperature_bed_raw;
|
|
|
|
case 3: return current_temperature_raw_pinda;
|
|
|
|
case 4: return current_voltage_raw_pwr;
|
|
|
|
case 5: return current_temperature_raw_ambient;
|
|
|
|
case 6: return current_voltage_raw_bed;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dcode_9()
|
|
|
|
{
|
|
|
|
printf_P(PSTR("D9 - Read/Write ADC\n"));
|
|
|
|
if ((strchr_pointer[1+1] == '?') || (strchr_pointer[1+1] == 0))
|
|
|
|
{
|
|
|
|
for (uint8_t i = 0; i < ADC_CHAN_CNT; i++)
|
|
|
|
printf_P(PSTR("\tADC%d=%4d\t(%S)\n"), i, dcode_9_ADC_val(i) >> 4, dcode_9_ADC_name(i));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uint8_t index = 0xff;
|
|
|
|
if (code_seen('I')) // index (index of used channel, not avr channel index)
|
|
|
|
index = code_value();
|
|
|
|
if (index < ADC_CHAN_CNT)
|
|
|
|
{
|
|
|
|
if (code_seen('V')) // value to be written as simulated
|
|
|
|
{
|
|
|
|
adc_sim_mask |= (1 << index);
|
|
|
|
adc_values[index] = (((int)code_value()) << 4);
|
|
|
|
printf_P(PSTR("ADC%d=%4d\n"), index, adc_values[index] >> 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-16 19:51:50 +00:00
|
|
|
void dcode_10()
|
|
|
|
{//Tell the printer that XYZ calibration went OK
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D10 - XYZ calibration = OK\n");
|
2017-11-16 19:51:50 +00:00
|
|
|
calibration_status_store(CALIBRATION_STATUS_LIVE_ADJUST);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dcode_12()
|
|
|
|
{//Reset Filament error, Power loss and crash counter ( Do it before every print and you can get stats for the print )
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D12 - Reset failstat counters\n");
|
2017-11-16 19:51:50 +00:00
|
|
|
eeprom_update_byte((uint8_t*)EEPROM_CRASH_COUNT, 0x00);
|
|
|
|
eeprom_update_byte((uint8_t*)EEPROM_FERROR_COUNT, 0x00);
|
|
|
|
eeprom_update_byte((uint8_t*)EEPROM_POWER_COUNT, 0x00);
|
2017-11-13 17:45:11 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 03:46:58 +00:00
|
|
|
#include "tmc2130.h"
|
|
|
|
#include "Marlin.h"
|
|
|
|
#include "planner.h"
|
|
|
|
extern void st_synchronize();
|
|
|
|
|
2017-11-13 17:45:11 +00:00
|
|
|
void dcode_2130()
|
|
|
|
{
|
|
|
|
// printf("test");
|
2017-11-27 03:46:58 +00:00
|
|
|
printf_P(PSTR("D2130 - TMC2130\n"));
|
|
|
|
uint8_t axis = 0xff;
|
|
|
|
if (code_seen('X'))
|
|
|
|
axis = X_AXIS;
|
|
|
|
else if (code_seen('Y'))
|
|
|
|
axis = Y_AXIS;
|
|
|
|
if (axis != 0xff)
|
|
|
|
{
|
|
|
|
homeaxis(axis);
|
|
|
|
tmc2130_sg_meassure_start(axis);
|
|
|
|
memcpy(destination, current_position, sizeof(destination));
|
|
|
|
destination[axis] = 200;
|
|
|
|
plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], homing_feedrate[X_AXIS]/60, active_extruder);
|
|
|
|
st_synchronize();
|
|
|
|
memcpy(destination, current_position, sizeof(destination));
|
|
|
|
destination[axis] = 0;
|
|
|
|
plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], homing_feedrate[X_AXIS]/60, active_extruder);
|
|
|
|
st_synchronize();
|
|
|
|
uint16_t sg = tmc2130_sg_meassure_stop();
|
|
|
|
tmc2130_sg_meassure = 0xff;
|
|
|
|
printf_P(PSTR("Meassure avg = %d\n"), sg);
|
|
|
|
}
|
2017-11-13 17:45:11 +00:00
|
|
|
}
|
|
|
|
|
2017-10-24 17:45:15 +00:00
|
|
|
void dcode_9125()
|
|
|
|
{
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("D9125 - PAT9125\n");
|
2017-10-24 17:45:15 +00:00
|
|
|
if ((strchr_pointer[1+4] == '?') || (strchr_pointer[1+4] == 0))
|
|
|
|
{
|
2018-01-25 04:13:21 +00:00
|
|
|
// printf("res_x=%d res_y=%d x=%d y=%d b=%d s=%d\n", pat9125_xres, pat9125_yres, pat9125_x, pat9125_y, pat9125_b, pat9125_s);
|
|
|
|
printf("x=%d y=%d b=%d s=%d\n", pat9125_x, pat9125_y, pat9125_b, pat9125_s);
|
2017-10-24 17:45:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (strchr_pointer[1+4] == '!')
|
|
|
|
{
|
|
|
|
pat9125_update();
|
2017-11-20 19:09:54 +00:00
|
|
|
printf("x=%d y=%d b=%d s=%d\n", pat9125_x, pat9125_y, pat9125_b, pat9125_s);
|
2017-10-24 17:45:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-01-23 15:47:42 +00:00
|
|
|
/*
|
2017-10-24 17:45:15 +00:00
|
|
|
if (code_seen('R'))
|
|
|
|
{
|
|
|
|
unsigned char res = (int)code_value();
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("pat9125_init(xres=yres=%d)=%d\n", res, pat9125_init(res, res));
|
2017-10-24 17:45:15 +00:00
|
|
|
}
|
2018-01-23 15:47:42 +00:00
|
|
|
*/
|
2017-10-24 17:45:15 +00:00
|
|
|
if (code_seen('X'))
|
|
|
|
{
|
|
|
|
pat9125_x = (int)code_value();
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("pat9125_x=%d\n", pat9125_x);
|
2017-10-24 17:45:15 +00:00
|
|
|
}
|
|
|
|
if (code_seen('Y'))
|
|
|
|
{
|
|
|
|
pat9125_y = (int)code_value();
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("pat9125_y=%d\n", pat9125_y);
|
2017-10-24 17:45:15 +00:00
|
|
|
}
|
2017-11-16 19:51:50 +00:00
|
|
|
if (code_seen('L'))
|
|
|
|
{
|
|
|
|
fsensor_log = (int)code_value();
|
2017-11-20 19:09:54 +00:00
|
|
|
LOG("fsensor_log=%d\n", fsensor_log);
|
2017-11-16 19:51:50 +00:00
|
|
|
}
|
2017-10-24 17:45:15 +00:00
|
|
|
}
|
2017-11-16 21:03:36 +00:00
|
|
|
|
|
|
|
#endif //DEBUG_DCODES
|