Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
marlin-anet-a8
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
eded90bf
Commit
eded90bf
authored
Oct 18, 2018
by
Michael Triffon
Committed by
Scott Lahteine
Oct 18, 2018
Browse files
Options
Downloads
Patches
Plain Diff
Updated Azteeg X5 Mini Wifi pins for onboard SD (#12133)
parent
27a84fd0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Marlin/src/pins/pins_AZTEEG_X5_MINI_WIFI.h
+36
-9
36 additions, 9 deletions
Marlin/src/pins/pins_AZTEEG_X5_MINI_WIFI.h
with
36 additions
and
9 deletions
Marlin/src/pins/pins_AZTEEG_X5_MINI_WIFI.h
+
36
−
9
View file @
eded90bf
...
@@ -35,15 +35,14 @@
...
@@ -35,15 +35,14 @@
#endif
#endif
//
//
//
Set CPU
//
LED
//
//
#undef F_CPU
#define LED_PIN P1_18
#define F_CPU 120000000
//
//
// Servo
// Servo
//
//
#define SERVO0_PIN P1_2
3
#define SERVO0_PIN P1_2
9
//
//
// Limit Switches
// Limit Switches
...
@@ -163,11 +162,6 @@
...
@@ -163,11 +162,6 @@
#define DOGLCD_CS P0_16 // (16)
#define DOGLCD_CS P0_16 // (16)
#endif
#endif
//#define MISO_PIN P0_17 // (50) system defined J3-10 & AUX-3
//#define MOSI_PIN P0_18 // (51) system defined J3-10 & AUX-3
//#define SCK_PIN P0_15 // (52) system defined J3-9 & AUX-3
//#define SS_PIN P1_23 // (53) system defined J3-5 & AUX-3 - sometimes called SDSS
#if ENABLED(MINIPANEL)
#if ENABLED(MINIPANEL)
// GLCD features
// GLCD features
//#define LCD_CONTRAST 190
//#define LCD_CONTRAST 190
...
@@ -180,3 +174,36 @@
...
@@ -180,3 +174,36 @@
#endif
#endif
#endif // ULTRA_LCD
#endif // ULTRA_LCD
//
// SD Support
//
//#define USB_SD_DISABLED // Disable host access to SD card as mass storage device through USB
//#define USB_SD_ONBOARD // Enable host access to SD card as mass storage device through USB
//#define LPC_SD_LCD // Marlin uses the SD drive attached to the LCD
#define LPC_SD_ONBOARD // Marlin uses the SD drive on the control board. There is no SD detect pin
// for the onboard card. Init card from LCD menu or send M21 whenever printer
// is powered on to enable SD access.
#if ENABLED(LPC_SD_LCD)
#define SCK_PIN P0_15
#define MISO_PIN P0_17
#define MOSI_PIN P0_18
#define SS_PIN P1_23 // Chip select for SD card used by Marlin
#define ONBOARD_SD_CS P0_06 // Chip select for "System" SD card
#endif
#if ENABLED(LPC_SD_ONBOARD)
#if ENABLED(USB_SD_ONBOARD)
// When sharing the SD card with a PC we want the menu options to
// mount/unmount the card and refresh it. So we disable card detect.
#define SHARED_SD_CARD
#undef SD_DETECT_PIN // there is also no detect pin for the onboard card
#endif
#define SCK_PIN P0_07
#define MISO_PIN P0_08
#define MOSI_PIN P0_09
#define SS_PIN P0_06 // Chip select for SD card used by Marlin
#define ONBOARD_SD_CS P0_06 // Chip select for "System" SD card
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment