Browse Source
Merge pull request #9028 from Bob-the-Kuhn/Due-SDSUPPORT
[2.0.x] Due - allow compile without SD card enabled & misc improvements (replaces PR #9007)
pull/1/head
Bob-the-Kuhn
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
16 additions and
5 deletions
-
Marlin/src/HAL/HAL_DUE/HAL_pinsDebug_Due.h
-
Marlin/src/HAL/HAL_DUE/usb/conf_access.h
-
Marlin/src/HAL/HAL_DUE/usb/conf_usb.h
-
Marlin/src/HAL/HAL_DUE/usb/sd_mmc_spi_mem.cpp
-
Marlin/src/HAL/HAL_DUE/usb/usb_task.c
|
|
@ -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
|
|
|
|
|
|
@ -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 |
|
|
|
|
|
@ -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" |
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
@ -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" |
|
|
|
|
|
@ -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; |
|
|
|
|
|
|
|