found a few more nasties
This commit is contained in:
Bob-the-Kuhn 2018-01-01 16:41:38 -06:00
parent 724e3f33bc
commit e5b71af8c9
5 changed files with 16 additions and 5 deletions

View File

@ -72,8 +72,8 @@
#define VALID_PIN(pin) (pin >= 0 && pin < (int8_t)NUMBER_PINS_TOTAL ? 1 : 0)
#define DIGITAL_PIN_TO_ANALOG_PIN(p) int(p - analogInputToDigitalPin(0))
#define IS_ANALOG(P) (((P) >= analogInputToDigitalPin(0)) && ((P) <= analogInputToDigitalPin(NUM_ANALOG_INPUTS - 1)))
#define pwm_status(pin) ((g_pinStatus[pin] & 0xF) == PIN_STATUS_PWM) && \
((g_APinDescription[pin].ulPinAttribute & PIN_ATTR_PWM) == PIN_ATTR_PWM)
#define pwm_status(pin) (((g_pinStatus[pin] & 0xF) == PIN_STATUS_PWM) && \
((g_APinDescription[pin].ulPinAttribute & PIN_ATTR_PWM) == PIN_ATTR_PWM))
#define MULTI_NAME_PAD 14 // space needed to be pretty if not first name assigned to a pin
bool GET_PINMODE(int8_t pin) { // 1: output, 0: input

View File

@ -53,7 +53,12 @@
/*! \name Activation of Logical Unit Numbers
*/
//! @{
#define LUN_0 ENABLE //!< SD/MMC Card over MCI Slot 0.
#ifdef SDSUPPORT
#define LUN_0 ENABLE //!< SD/MMC Card over MCI Slot 0.
#else
#define LUN_0 DISABLE
#endif
#define LUN_1 DISABLE
#define LUN_2 DISABLE
#define LUN_3 DISABLE

View File

@ -72,7 +72,11 @@
//! USB Device string definitions (Optional)
#define USB_DEVICE_MANUFACTURE_NAME "marlinfw.org"
#define USB_DEVICE_PRODUCT_NAME CUSTOM_MACHINE_NAME
#ifdef CUSTOM_MACHINE_NAME
#define USB_DEVICE_PRODUCT_NAME CUSTOM_MACHINE_NAME
#else
#define USB_DEVICE_PRODUCT_NAME "3D Printer"
#endif
#define USB_DEVICE_SERIAL_NAME "123985739853"
/**

View File

@ -2,7 +2,7 @@
* Interface from Atmel USB MSD to Marlin SD card
*/
#ifdef ARDUINO_ARCH_SAM
#if defined(ARDUINO_ARCH_SAM) && defined(SDSUPPORT)
#include "../../../inc/MarlinConfig.h"
#include "../../../sd/cardreader.h"

View File

@ -47,6 +47,7 @@
#include "conf_usb.h"
#include "udc.h"
#include <Arduino.h>
static volatile bool main_b_msc_enable = false;
static volatile bool main_b_cdc_enable = false;
@ -253,6 +254,7 @@ bool usb_task_other_requests(void) {
return true;
}
void HAL_init(void) {
uint16_t *ptr;