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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
410b023b
Commit
410b023b
authored
6 years ago
by
Bob-the-Kuhn
Committed by
Scott Lahteine
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[2.0.x] Add Viki support to RAMPS_FD_V1 (DUE) (#10598)
parent
fcc5baef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Marlin/src/lcd/dogm/HAL_LCD_com_defines.h
+6
-3
6 additions, 3 deletions
Marlin/src/lcd/dogm/HAL_LCD_com_defines.h
Marlin/src/pins/pins_RAMPS_FD_V1.h
+13
-0
13 additions, 0 deletions
Marlin/src/pins/pins_RAMPS_FD_V1.h
with
19 additions
and
3 deletions
Marlin/src/lcd/dogm/HAL_LCD_com_defines.h
+
6
−
3
View file @
410b023b
...
...
@@ -28,13 +28,16 @@
uint8_t
u8g_com_arduino_sw_spi_fn
(
u8g_t
*
u8g
,
uint8_t
msg
,
uint8_t
arg_val
,
void
*
arg_ptr
);
#define U8G_COM_HAL_SW_SPI_FN u8g_com_arduino_sw_spi_fn
uint8_t
u8g_com_arduino_hw_spi_fn
(
u8g_t
*
u8g
,
uint8_t
msg
,
uint8_t
arg_val
,
void
*
arg_ptr
);
#define U8G_COM_HAL_HW_SPI_FN u8g_com_arduino_hw_spi_fn
#ifdef __SAM3X8E__
uint8_t
u8g_com_HAL_DUE_shared_hw_spi_fn
(
u8g_t
*
u8g
,
uint8_t
msg
,
uint8_t
arg_val
,
void
*
arg_ptr
);
#define U8G_COM_HAL_HW_SPI_FN u8g_com_HAL_DUE_shared_hw_spi_fn
uint8_t
u8g_com_HAL_DUE_ST7920_sw_spi_fn
(
u8g_t
*
u8g
,
uint8_t
msg
,
uint8_t
arg_val
,
void
*
arg_ptr
);
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_HAL_DUE_ST7920_sw_spi_fn
#else
uint8_t
u8g_com_arduino_hw_spi_fn
(
u8g_t
*
u8g
,
uint8_t
msg
,
uint8_t
arg_val
,
void
*
arg_ptr
);
#define U8G_COM_HAL_HW_SPI_FN u8g_com_arduino_hw_spi_fn
uint8_t
u8g_com_arduino_st7920_spi_fn
(
u8g_t
*
u8g
,
uint8_t
msg
,
uint8_t
arg_val
,
void
*
arg_ptr
);
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_arduino_st7920_spi_fn
#endif
...
...
This diff is collapsed.
Click to expand it.
Marlin/src/pins/pins_RAMPS_FD_V1.h
+
13
−
0
View file @
410b023b
...
...
@@ -161,6 +161,19 @@
#define DOGLCD_CS 25
#define DOGLCD_A0 27
#endif
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
#define DOGLCD_A0 16
#define KILL_PIN 51
#define STAT_LED_BLUE_PIN 29
#define STAT_LED_RED_PIN 23
#define DOGLCD_CS 17
#define DOGLCD_SCK 76 //SCK_PIN - required so that the DUE hardware SPI will be used
#define DOGLCD_MOSI 75 //MOSI_PIN - required so that the DUE hardware SPI will be used
#define DOGLCD_MISO 74 //MISO_PIN
#endif
#endif // ULTRA_LCD
#if ENABLED(HAVE_TMC2208)
...
...
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