forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔨 Makefile + 256K Creality Maple + Heater IDs (MarlinFirmware#26018)
- Loading branch information
1 parent
78cf757
commit 68eb100
Showing
7 changed files
with
57 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
MEMORY | ||
{ | ||
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 48K - 40 | ||
rom (rx) : ORIGIN = 0x08007000, LENGTH = 256K - 28K | ||
} | ||
|
||
/* Provide memory region aliases for common.inc */ | ||
REGION_ALIAS("REGION_TEXT", rom); | ||
REGION_ALIAS("REGION_DATA", ram); | ||
REGION_ALIAS("REGION_BSS", ram); | ||
REGION_ALIAS("REGION_RODATA", rom); | ||
|
||
/* Let common.inc handle the real work. */ | ||
INCLUDE common.inc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,7 +111,7 @@ lib_deps = ${env:STM32F103RC_btt_maple.lib_deps} | |
USBComposite for [email protected] | ||
|
||
# | ||
# Creality (STM32F103RET6) | ||
# Creality 512K (STM32F103RET6) | ||
# | ||
[env:STM32F103RE_creality_maple] | ||
extends = env:STM32F103RE_maple | ||
|
@@ -123,13 +123,13 @@ debug_tool = jlink | |
upload_protocol = jlink | ||
|
||
# | ||
# Creality (STM32F103RCT6) | ||
# Creality 256K (STM32F103RCT6) | ||
# | ||
[env:STM32F103RC_creality_maple] | ||
extends = env:STM32F103RC_maple | ||
build_flags = ${env:STM32F103RC_maple.build_flags} -DTEMP_TIMER_CHAN=4 | ||
board_build.address = 0x08007000 | ||
board_build.ldscript = creality.ld | ||
board_build.ldscript = creality256k.ld | ||
board_build.rename = firmware-{date}-{time}.bin | ||
debug_tool = jlink | ||
upload_protocol = jlink | ||
|