mirror of
https://github.com/makerbase-mks/MKS-TFT35-Firmware.git
synced 2026-02-20 02:01:28 +01:00
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
.pio
|
||||
.vscode/.browse.c_cpp.db*
|
||||
.vscode/c_cpp_properties.json
|
||||
.vscode/launch.json
|
||||
.vscode/ipch
|
||||
.vscode/extensions.json
|
||||
.vscode/settings.json
|
||||
@@ -1,12 +1,17 @@
|
||||
#ifndef _TYPE_DEFINE_H_
|
||||
#define _TYPE_DEFINE_H_
|
||||
|
||||
#if __GNUC__
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
typedef unsigned int speed_t;
|
||||
|
||||
typedef unsigned long ticks_t;
|
||||
typedef unsigned long millis_t;
|
||||
typedef int flag8_t;
|
||||
|
||||
#ifndef __GNUC__
|
||||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
@@ -14,6 +19,6 @@ typedef unsigned int uint32_t;
|
||||
typedef signed char int8_t;
|
||||
typedef signed short int16_t;
|
||||
typedef signed int int32_t;
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -19,3 +19,9 @@
|
||||
(3) Add Marin firmware online parameter adjustment function,can configure basic parameters such as pulse, TMC drive current,acceleration, probe offset, etc.
|
||||
(4) Add Gcode console display
|
||||
(5) Added on-screen text reminder function when out of stock
|
||||
|
||||
# Building the Firmware
|
||||
|
||||
You need IAR or Visual Studio Code with PlatformIO.
|
||||
|
||||
To install Visual Studio Code and PlatformIO, see instructions here: https://platformio.org/install/ide?install=vscode
|
||||
|
||||
203
Src/pio/ldscript.ld
Normal file
203
Src/pio/ldscript.ld
Normal file
@@ -0,0 +1,203 @@
|
||||
/*
|
||||
******************************************************************************
|
||||
**
|
||||
** File : LinkerScript.ld
|
||||
**
|
||||
** Abstract : Linker script for STM32F4x7Vx Device with
|
||||
** 512/1024KByte FLASH, 192KByte RAM
|
||||
**
|
||||
** Set heap size, stack size and stack location according
|
||||
** to application requirements.
|
||||
**
|
||||
** Set memory bank area and size if external memory is used.
|
||||
**
|
||||
** Target : STMicroelectronics STM32
|
||||
**
|
||||
** Distribution: The file is distributed “as is,” without any warranty
|
||||
** of any kind.
|
||||
**
|
||||
*****************************************************************************
|
||||
** @attention
|
||||
**
|
||||
** <h2><center>© COPYRIGHT(c) 2019 STMicroelectronics</center></h2>
|
||||
**
|
||||
** Redistribution and use in source and binary forms, with or without modification,
|
||||
** are permitted provided that the following conditions are met:
|
||||
** 1. Redistributions of source code must retain the above copyright notice,
|
||||
** this list of conditions and the following disclaimer.
|
||||
** 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
** this list of conditions and the following disclaimer in the documentation
|
||||
** and/or other materials provided with the distribution.
|
||||
** 3. Neither the name of STMicroelectronics nor the names of its contributors
|
||||
** may be used to endorse or promote products derived from this software
|
||||
** without specific prior written permission.
|
||||
**
|
||||
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
**
|
||||
*****************************************************************************
|
||||
*/
|
||||
|
||||
/* Entry Point */
|
||||
ENTRY(Reset_Handler)
|
||||
|
||||
/* Highest address of the user mode stack */
|
||||
_estack = 0x20000000 + LD_MAX_DATA_SIZE; /* end of RAM */
|
||||
/* Generate a link error if heap and stack don't fit into RAM */
|
||||
_Min_Heap_Size = 0x200; /* required amount of heap */
|
||||
_Min_Stack_Size = 0x400; /* required amount of stack */
|
||||
|
||||
/* Specify the memory areas */
|
||||
MEMORY
|
||||
{
|
||||
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = LD_MAX_DATA_SIZE
|
||||
CCMRAM (rw) : ORIGIN = 0x10000000, LENGTH = 64K
|
||||
FLASH (rx) : ORIGIN = 0x8000000 + LD_FLASH_OFFSET, LENGTH = LD_MAX_SIZE - LD_FLASH_OFFSET
|
||||
}
|
||||
|
||||
/* Define output sections */
|
||||
SECTIONS
|
||||
{
|
||||
/* The startup code goes first into FLASH */
|
||||
.isr_vector :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
KEEP(*(.isr_vector)) /* Startup code */
|
||||
. = ALIGN(4);
|
||||
} >FLASH
|
||||
|
||||
/* The program code and other data goes into FLASH */
|
||||
.text :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
*(.text) /* .text sections (code) */
|
||||
*(.text*) /* .text* sections (code) */
|
||||
*(.glue_7) /* glue arm to thumb code */
|
||||
*(.glue_7t) /* glue thumb to arm code */
|
||||
*(.eh_frame)
|
||||
|
||||
KEEP (*(.init))
|
||||
KEEP (*(.fini))
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .; /* define a global symbols at end of code */
|
||||
} >FLASH
|
||||
|
||||
/* Constant data goes into FLASH */
|
||||
.rodata :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
*(.rodata) /* .rodata sections (constants, strings, etc.) */
|
||||
*(.rodata*) /* .rodata* sections (constants, strings, etc.) */
|
||||
. = ALIGN(4);
|
||||
} >FLASH
|
||||
|
||||
.ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
|
||||
.ARM : {
|
||||
__exidx_start = .;
|
||||
*(.ARM.exidx*)
|
||||
__exidx_end = .;
|
||||
} >FLASH
|
||||
|
||||
.preinit_array :
|
||||
{
|
||||
PROVIDE_HIDDEN (__preinit_array_start = .);
|
||||
KEEP (*(.preinit_array*))
|
||||
PROVIDE_HIDDEN (__preinit_array_end = .);
|
||||
} >FLASH
|
||||
.init_array :
|
||||
{
|
||||
PROVIDE_HIDDEN (__init_array_start = .);
|
||||
KEEP (*(SORT(.init_array.*)))
|
||||
KEEP (*(.init_array*))
|
||||
PROVIDE_HIDDEN (__init_array_end = .);
|
||||
} >FLASH
|
||||
.fini_array :
|
||||
{
|
||||
PROVIDE_HIDDEN (__fini_array_start = .);
|
||||
KEEP (*(SORT(.fini_array.*)))
|
||||
KEEP (*(.fini_array*))
|
||||
PROVIDE_HIDDEN (__fini_array_end = .);
|
||||
} >FLASH
|
||||
|
||||
/* used by the startup to initialize data */
|
||||
_sidata = LOADADDR(.data);
|
||||
|
||||
/* Initialized data sections goes into RAM, load LMA copy after code */
|
||||
.data :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
_sdata = .; /* create a global symbol at data start */
|
||||
*(.data) /* .data sections */
|
||||
*(.data*) /* .data* sections */
|
||||
|
||||
. = ALIGN(4);
|
||||
_edata = .; /* define a global symbol at data end */
|
||||
} >RAM AT> FLASH
|
||||
|
||||
_siccmram = LOADADDR(.ccmram);
|
||||
|
||||
/* CCM-RAM section
|
||||
*
|
||||
* IMPORTANT NOTE!
|
||||
* If initialized variables will be placed in this section,
|
||||
* the startup code needs to be modified to copy the init-values.
|
||||
*/
|
||||
.ccmram :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
_sccmram = .; /* create a global symbol at ccmram start */
|
||||
*(.ccmram)
|
||||
*(.ccmram*)
|
||||
|
||||
. = ALIGN(4);
|
||||
_eccmram = .; /* create a global symbol at ccmram end */
|
||||
} >CCMRAM AT> FLASH
|
||||
|
||||
|
||||
/* Uninitialized data section */
|
||||
. = ALIGN(4);
|
||||
.bss :
|
||||
{
|
||||
/* This is used by the startup in order to initialize the .bss secion */
|
||||
_sbss = .; /* define a global symbol at bss start */
|
||||
__bss_start__ = _sbss;
|
||||
*(.bss)
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
|
||||
. = ALIGN(4);
|
||||
_ebss = .; /* define a global symbol at bss end */
|
||||
__bss_end__ = _ebss;
|
||||
} >RAM
|
||||
|
||||
/* User_heap_stack section, used to check that there is enough RAM left */
|
||||
._user_heap_stack :
|
||||
{
|
||||
. = ALIGN(8);
|
||||
PROVIDE ( end = . );
|
||||
PROVIDE ( _end = . );
|
||||
. = . + _Min_Heap_Size;
|
||||
. = . + _Min_Stack_Size;
|
||||
. = ALIGN(8);
|
||||
} >RAM
|
||||
|
||||
|
||||
/* Remove information from the standard libraries */
|
||||
/DISCARD/ :
|
||||
{
|
||||
libc.a ( * )
|
||||
libm.a ( * )
|
||||
libgcc.a ( * )
|
||||
}
|
||||
|
||||
.ARM.attributes 0 : { *(.ARM.attributes) }
|
||||
}
|
||||
BIN
Src/pio/libs/libGUI.a
Normal file
BIN
Src/pio/libs/libGUI.a
Normal file
Binary file not shown.
BIN
Src/pio/libs/libarm_cortexM4lf_math.a
Normal file
BIN
Src/pio/libs/libarm_cortexM4lf_math.a
Normal file
Binary file not shown.
505
Src/pio/startup_stm32f407xx.S
Normal file
505
Src/pio/startup_stm32f407xx.S
Normal file
@@ -0,0 +1,505 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file startup_stm32f407xx.s
|
||||
* @author MCD Application Team
|
||||
* @brief STM32F407xx Devices vector table for GCC based toolchains.
|
||||
* This module performs:
|
||||
* - Set the initial SP
|
||||
* - Set the initial PC == Reset_Handler,
|
||||
* - Set the vector table entries with the exceptions ISR address
|
||||
* - Branches to main in the C library (which eventually
|
||||
* calls main()).
|
||||
* After Reset the Cortex-M4 processor is in Thread mode,
|
||||
* priority is Privileged, and the Stack is set to Main.
|
||||
******************************************************************************
|
||||
* @attention
|
||||
*
|
||||
* <h2><center>© Copyright (c) 2017 STMicroelectronics.
|
||||
* All rights reserved.</center></h2>
|
||||
*
|
||||
* This software component is licensed by ST under BSD 3-Clause license,
|
||||
* the "License"; You may not use this file except in compliance with the
|
||||
* License. You may obtain a copy of the License at:
|
||||
* opensource.org/licenses/BSD-3-Clause
|
||||
*
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
.syntax unified
|
||||
.cpu cortex-m4
|
||||
.fpu softvfp
|
||||
.thumb
|
||||
|
||||
.global g_pfnVectors
|
||||
.global Default_Handler
|
||||
|
||||
/* start address for the initialization values of the .data section.
|
||||
defined in linker script */
|
||||
.word _sidata
|
||||
/* start address for the .data section. defined in linker script */
|
||||
.word _sdata
|
||||
/* end address for the .data section. defined in linker script */
|
||||
.word _edata
|
||||
/* start address for the .bss section. defined in linker script */
|
||||
.word _sbss
|
||||
/* end address for the .bss section. defined in linker script */
|
||||
.word _ebss
|
||||
/* stack used for SystemInit_ExtMemCtl; always internal RAM used */
|
||||
|
||||
/**
|
||||
* @brief This is the code that gets called when the processor first
|
||||
* starts execution following a reset event. Only the absolutely
|
||||
* necessary set is performed, after which the application
|
||||
* supplied main() routine is called.
|
||||
* @param None
|
||||
* @retval : None
|
||||
*/
|
||||
|
||||
.section .text.Reset_Handler
|
||||
.weak Reset_Handler
|
||||
.type Reset_Handler, %function
|
||||
Reset_Handler:
|
||||
ldr sp, =_estack /* set stack pointer */
|
||||
|
||||
/* Copy the data segment initializers from flash to SRAM */
|
||||
movs r1, #0
|
||||
b LoopCopyDataInit
|
||||
|
||||
CopyDataInit:
|
||||
ldr r3, =_sidata
|
||||
ldr r3, [r3, r1]
|
||||
str r3, [r0, r1]
|
||||
adds r1, r1, #4
|
||||
|
||||
LoopCopyDataInit:
|
||||
ldr r0, =_sdata
|
||||
ldr r3, =_edata
|
||||
adds r2, r0, r1
|
||||
cmp r2, r3
|
||||
bcc CopyDataInit
|
||||
ldr r2, =_sbss
|
||||
b LoopFillZerobss
|
||||
/* Zero fill the bss segment. */
|
||||
FillZerobss:
|
||||
movs r3, #0
|
||||
str r3, [r2], #4
|
||||
|
||||
LoopFillZerobss:
|
||||
ldr r3, = _ebss
|
||||
cmp r2, r3
|
||||
bcc FillZerobss
|
||||
|
||||
/* Call the clock system intitialization function.*/
|
||||
bl SystemInit
|
||||
/* Call static constructors */
|
||||
bl __libc_init_array
|
||||
/* Call the application's entry point.*/
|
||||
bl main
|
||||
bx lr
|
||||
.size Reset_Handler, .-Reset_Handler
|
||||
|
||||
/**
|
||||
* @brief This is the code that gets called when the processor receives an
|
||||
* unexpected interrupt. This simply enters an infinite loop, preserving
|
||||
* the system state for examination by a debugger.
|
||||
* @param None
|
||||
* @retval None
|
||||
*/
|
||||
.section .text.Default_Handler,"ax",%progbits
|
||||
Default_Handler:
|
||||
Infinite_Loop:
|
||||
b Infinite_Loop
|
||||
.size Default_Handler, .-Default_Handler
|
||||
/******************************************************************************
|
||||
*
|
||||
* The minimal vector table for a Cortex M3. Note that the proper constructs
|
||||
* must be placed on this to ensure that it ends up at physical address
|
||||
* 0x0000.0000.
|
||||
*
|
||||
*******************************************************************************/
|
||||
.section .isr_vector,"a",%progbits
|
||||
.type g_pfnVectors, %object
|
||||
.size g_pfnVectors, .-g_pfnVectors
|
||||
|
||||
|
||||
g_pfnVectors:
|
||||
.word _estack
|
||||
.word Reset_Handler
|
||||
.word NMI_Handler
|
||||
.word HardFault_Handler
|
||||
.word MemManage_Handler
|
||||
.word BusFault_Handler
|
||||
.word UsageFault_Handler
|
||||
.word 0
|
||||
.word 0
|
||||
.word 0
|
||||
.word 0
|
||||
.word SVC_Handler
|
||||
.word DebugMon_Handler
|
||||
.word 0
|
||||
.word PendSV_Handler
|
||||
.word SysTick_Handler
|
||||
|
||||
/* External Interrupts */
|
||||
.word WWDG_IRQHandler /* Window WatchDog */
|
||||
.word PVD_IRQHandler /* PVD through EXTI Line detection */
|
||||
.word TAMP_STAMP_IRQHandler /* Tamper and TimeStamps through the EXTI line */
|
||||
.word RTC_WKUP_IRQHandler /* RTC Wakeup through the EXTI line */
|
||||
.word FLASH_IRQHandler /* FLASH */
|
||||
.word RCC_IRQHandler /* RCC */
|
||||
.word EXTI0_IRQHandler /* EXTI Line0 */
|
||||
.word EXTI1_IRQHandler /* EXTI Line1 */
|
||||
.word EXTI2_IRQHandler /* EXTI Line2 */
|
||||
.word EXTI3_IRQHandler /* EXTI Line3 */
|
||||
.word EXTI4_IRQHandler /* EXTI Line4 */
|
||||
.word DMA1_Stream0_IRQHandler /* DMA1 Stream 0 */
|
||||
.word DMA1_Stream1_IRQHandler /* DMA1 Stream 1 */
|
||||
.word DMA1_Stream2_IRQHandler /* DMA1 Stream 2 */
|
||||
.word DMA1_Stream3_IRQHandler /* DMA1 Stream 3 */
|
||||
.word DMA1_Stream4_IRQHandler /* DMA1 Stream 4 */
|
||||
.word DMA1_Stream5_IRQHandler /* DMA1 Stream 5 */
|
||||
.word DMA1_Stream6_IRQHandler /* DMA1 Stream 6 */
|
||||
.word ADC_IRQHandler /* ADC1, ADC2 and ADC3s */
|
||||
.word CAN1_TX_IRQHandler /* CAN1 TX */
|
||||
.word CAN1_RX0_IRQHandler /* CAN1 RX0 */
|
||||
.word CAN1_RX1_IRQHandler /* CAN1 RX1 */
|
||||
.word CAN1_SCE_IRQHandler /* CAN1 SCE */
|
||||
.word EXTI9_5_IRQHandler /* External Line[9:5]s */
|
||||
.word TIM1_BRK_TIM9_IRQHandler /* TIM1 Break and TIM9 */
|
||||
.word TIM1_UP_TIM10_IRQHandler /* TIM1 Update and TIM10 */
|
||||
.word TIM1_TRG_COM_TIM11_IRQHandler /* TIM1 Trigger and Commutation and TIM11 */
|
||||
.word TIM1_CC_IRQHandler /* TIM1 Capture Compare */
|
||||
.word TIM2_IRQHandler /* TIM2 */
|
||||
.word TIM3_IRQHandler /* TIM3 */
|
||||
.word TIM4_IRQHandler /* TIM4 */
|
||||
.word I2C1_EV_IRQHandler /* I2C1 Event */
|
||||
.word I2C1_ER_IRQHandler /* I2C1 Error */
|
||||
.word I2C2_EV_IRQHandler /* I2C2 Event */
|
||||
.word I2C2_ER_IRQHandler /* I2C2 Error */
|
||||
.word SPI1_IRQHandler /* SPI1 */
|
||||
.word SPI2_IRQHandler /* SPI2 */
|
||||
.word USART1_IRQHandler /* USART1 */
|
||||
.word USART2_IRQHandler /* USART2 */
|
||||
.word USART3_IRQHandler /* USART3 */
|
||||
.word EXTI15_10_IRQHandler /* External Line[15:10]s */
|
||||
.word RTC_Alarm_IRQHandler /* RTC Alarm (A and B) through EXTI Line */
|
||||
.word OTG_FS_WKUP_IRQHandler /* USB OTG FS Wakeup through EXTI line */
|
||||
.word TIM8_BRK_TIM12_IRQHandler /* TIM8 Break and TIM12 */
|
||||
.word TIM8_UP_TIM13_IRQHandler /* TIM8 Update and TIM13 */
|
||||
.word TIM8_TRG_COM_TIM14_IRQHandler /* TIM8 Trigger and Commutation and TIM14 */
|
||||
.word TIM8_CC_IRQHandler /* TIM8 Capture Compare */
|
||||
.word DMA1_Stream7_IRQHandler /* DMA1 Stream7 */
|
||||
.word FSMC_IRQHandler /* FSMC */
|
||||
.word SDIO_IRQHandler /* SDIO */
|
||||
.word TIM5_IRQHandler /* TIM5 */
|
||||
.word SPI3_IRQHandler /* SPI3 */
|
||||
.word UART4_IRQHandler /* UART4 */
|
||||
.word UART5_IRQHandler /* UART5 */
|
||||
.word TIM6_DAC_IRQHandler /* TIM6 and DAC1&2 underrun errors */
|
||||
.word TIM7_IRQHandler /* TIM7 */
|
||||
.word DMA2_Stream0_IRQHandler /* DMA2 Stream 0 */
|
||||
.word DMA2_Stream1_IRQHandler /* DMA2 Stream 1 */
|
||||
.word DMA2_Stream2_IRQHandler /* DMA2 Stream 2 */
|
||||
.word DMA2_Stream3_IRQHandler /* DMA2 Stream 3 */
|
||||
.word DMA2_Stream4_IRQHandler /* DMA2 Stream 4 */
|
||||
.word ETH_IRQHandler /* Ethernet */
|
||||
.word ETH_WKUP_IRQHandler /* Ethernet Wakeup through EXTI line */
|
||||
.word CAN2_TX_IRQHandler /* CAN2 TX */
|
||||
.word CAN2_RX0_IRQHandler /* CAN2 RX0 */
|
||||
.word CAN2_RX1_IRQHandler /* CAN2 RX1 */
|
||||
.word CAN2_SCE_IRQHandler /* CAN2 SCE */
|
||||
.word OTG_FS_IRQHandler /* USB OTG FS */
|
||||
.word DMA2_Stream5_IRQHandler /* DMA2 Stream 5 */
|
||||
.word DMA2_Stream6_IRQHandler /* DMA2 Stream 6 */
|
||||
.word DMA2_Stream7_IRQHandler /* DMA2 Stream 7 */
|
||||
.word USART6_IRQHandler /* USART6 */
|
||||
.word I2C3_EV_IRQHandler /* I2C3 event */
|
||||
.word I2C3_ER_IRQHandler /* I2C3 error */
|
||||
.word OTG_HS_EP1_OUT_IRQHandler /* USB OTG HS End Point 1 Out */
|
||||
.word OTG_HS_EP1_IN_IRQHandler /* USB OTG HS End Point 1 In */
|
||||
.word OTG_HS_WKUP_IRQHandler /* USB OTG HS Wakeup through EXTI */
|
||||
.word OTG_HS_IRQHandler /* USB OTG HS */
|
||||
.word DCMI_IRQHandler /* DCMI */
|
||||
.word 0 /* CRYP crypto */
|
||||
.word HASH_RNG_IRQHandler /* Hash and Rng */
|
||||
.word FPU_IRQHandler /* FPU */
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* Provide weak aliases for each Exception handler to the Default_Handler.
|
||||
* As they are weak aliases, any function with the same name will override
|
||||
* this definition.
|
||||
*
|
||||
*******************************************************************************/
|
||||
.weak NMI_Handler
|
||||
.thumb_set NMI_Handler,Default_Handler
|
||||
|
||||
.weak HardFault_Handler
|
||||
.thumb_set HardFault_Handler,Default_Handler
|
||||
|
||||
.weak MemManage_Handler
|
||||
.thumb_set MemManage_Handler,Default_Handler
|
||||
|
||||
.weak BusFault_Handler
|
||||
.thumb_set BusFault_Handler,Default_Handler
|
||||
|
||||
.weak UsageFault_Handler
|
||||
.thumb_set UsageFault_Handler,Default_Handler
|
||||
|
||||
.weak SVC_Handler
|
||||
.thumb_set SVC_Handler,Default_Handler
|
||||
|
||||
.weak DebugMon_Handler
|
||||
.thumb_set DebugMon_Handler,Default_Handler
|
||||
|
||||
.weak PendSV_Handler
|
||||
.thumb_set PendSV_Handler,Default_Handler
|
||||
|
||||
.weak SysTick_Handler
|
||||
.thumb_set SysTick_Handler,Default_Handler
|
||||
|
||||
.weak WWDG_IRQHandler
|
||||
.thumb_set WWDG_IRQHandler,Default_Handler
|
||||
|
||||
.weak PVD_IRQHandler
|
||||
.thumb_set PVD_IRQHandler,Default_Handler
|
||||
|
||||
.weak TAMP_STAMP_IRQHandler
|
||||
.thumb_set TAMP_STAMP_IRQHandler,Default_Handler
|
||||
|
||||
.weak RTC_WKUP_IRQHandler
|
||||
.thumb_set RTC_WKUP_IRQHandler,Default_Handler
|
||||
|
||||
.weak FLASH_IRQHandler
|
||||
.thumb_set FLASH_IRQHandler,Default_Handler
|
||||
|
||||
.weak RCC_IRQHandler
|
||||
.thumb_set RCC_IRQHandler,Default_Handler
|
||||
|
||||
.weak EXTI0_IRQHandler
|
||||
.thumb_set EXTI0_IRQHandler,Default_Handler
|
||||
|
||||
.weak EXTI1_IRQHandler
|
||||
.thumb_set EXTI1_IRQHandler,Default_Handler
|
||||
|
||||
.weak EXTI2_IRQHandler
|
||||
.thumb_set EXTI2_IRQHandler,Default_Handler
|
||||
|
||||
.weak EXTI3_IRQHandler
|
||||
.thumb_set EXTI3_IRQHandler,Default_Handler
|
||||
|
||||
.weak EXTI4_IRQHandler
|
||||
.thumb_set EXTI4_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA1_Stream0_IRQHandler
|
||||
.thumb_set DMA1_Stream0_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA1_Stream1_IRQHandler
|
||||
.thumb_set DMA1_Stream1_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA1_Stream2_IRQHandler
|
||||
.thumb_set DMA1_Stream2_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA1_Stream3_IRQHandler
|
||||
.thumb_set DMA1_Stream3_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA1_Stream4_IRQHandler
|
||||
.thumb_set DMA1_Stream4_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA1_Stream5_IRQHandler
|
||||
.thumb_set DMA1_Stream5_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA1_Stream6_IRQHandler
|
||||
.thumb_set DMA1_Stream6_IRQHandler,Default_Handler
|
||||
|
||||
.weak ADC_IRQHandler
|
||||
.thumb_set ADC_IRQHandler,Default_Handler
|
||||
|
||||
.weak CAN1_TX_IRQHandler
|
||||
.thumb_set CAN1_TX_IRQHandler,Default_Handler
|
||||
|
||||
.weak CAN1_RX0_IRQHandler
|
||||
.thumb_set CAN1_RX0_IRQHandler,Default_Handler
|
||||
|
||||
.weak CAN1_RX1_IRQHandler
|
||||
.thumb_set CAN1_RX1_IRQHandler,Default_Handler
|
||||
|
||||
.weak CAN1_SCE_IRQHandler
|
||||
.thumb_set CAN1_SCE_IRQHandler,Default_Handler
|
||||
|
||||
.weak EXTI9_5_IRQHandler
|
||||
.thumb_set EXTI9_5_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM1_BRK_TIM9_IRQHandler
|
||||
.thumb_set TIM1_BRK_TIM9_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM1_UP_TIM10_IRQHandler
|
||||
.thumb_set TIM1_UP_TIM10_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM1_TRG_COM_TIM11_IRQHandler
|
||||
.thumb_set TIM1_TRG_COM_TIM11_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM1_CC_IRQHandler
|
||||
.thumb_set TIM1_CC_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM2_IRQHandler
|
||||
.thumb_set TIM2_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM3_IRQHandler
|
||||
.thumb_set TIM3_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM4_IRQHandler
|
||||
.thumb_set TIM4_IRQHandler,Default_Handler
|
||||
|
||||
.weak I2C1_EV_IRQHandler
|
||||
.thumb_set I2C1_EV_IRQHandler,Default_Handler
|
||||
|
||||
.weak I2C1_ER_IRQHandler
|
||||
.thumb_set I2C1_ER_IRQHandler,Default_Handler
|
||||
|
||||
.weak I2C2_EV_IRQHandler
|
||||
.thumb_set I2C2_EV_IRQHandler,Default_Handler
|
||||
|
||||
.weak I2C2_ER_IRQHandler
|
||||
.thumb_set I2C2_ER_IRQHandler,Default_Handler
|
||||
|
||||
.weak SPI1_IRQHandler
|
||||
.thumb_set SPI1_IRQHandler,Default_Handler
|
||||
|
||||
.weak SPI2_IRQHandler
|
||||
.thumb_set SPI2_IRQHandler,Default_Handler
|
||||
|
||||
.weak USART1_IRQHandler
|
||||
.thumb_set USART1_IRQHandler,Default_Handler
|
||||
|
||||
.weak USART2_IRQHandler
|
||||
.thumb_set USART2_IRQHandler,Default_Handler
|
||||
|
||||
.weak USART3_IRQHandler
|
||||
.thumb_set USART3_IRQHandler,Default_Handler
|
||||
|
||||
.weak EXTI15_10_IRQHandler
|
||||
.thumb_set EXTI15_10_IRQHandler,Default_Handler
|
||||
|
||||
.weak RTC_Alarm_IRQHandler
|
||||
.thumb_set RTC_Alarm_IRQHandler,Default_Handler
|
||||
|
||||
.weak OTG_FS_WKUP_IRQHandler
|
||||
.thumb_set OTG_FS_WKUP_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM8_BRK_TIM12_IRQHandler
|
||||
.thumb_set TIM8_BRK_TIM12_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM8_UP_TIM13_IRQHandler
|
||||
.thumb_set TIM8_UP_TIM13_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM8_TRG_COM_TIM14_IRQHandler
|
||||
.thumb_set TIM8_TRG_COM_TIM14_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM8_CC_IRQHandler
|
||||
.thumb_set TIM8_CC_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA1_Stream7_IRQHandler
|
||||
.thumb_set DMA1_Stream7_IRQHandler,Default_Handler
|
||||
|
||||
.weak FSMC_IRQHandler
|
||||
.thumb_set FSMC_IRQHandler,Default_Handler
|
||||
|
||||
.weak SDIO_IRQHandler
|
||||
.thumb_set SDIO_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM5_IRQHandler
|
||||
.thumb_set TIM5_IRQHandler,Default_Handler
|
||||
|
||||
.weak SPI3_IRQHandler
|
||||
.thumb_set SPI3_IRQHandler,Default_Handler
|
||||
|
||||
.weak UART4_IRQHandler
|
||||
.thumb_set UART4_IRQHandler,Default_Handler
|
||||
|
||||
.weak UART5_IRQHandler
|
||||
.thumb_set UART5_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM6_DAC_IRQHandler
|
||||
.thumb_set TIM6_DAC_IRQHandler,Default_Handler
|
||||
|
||||
.weak TIM7_IRQHandler
|
||||
.thumb_set TIM7_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA2_Stream0_IRQHandler
|
||||
.thumb_set DMA2_Stream0_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA2_Stream1_IRQHandler
|
||||
.thumb_set DMA2_Stream1_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA2_Stream2_IRQHandler
|
||||
.thumb_set DMA2_Stream2_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA2_Stream3_IRQHandler
|
||||
.thumb_set DMA2_Stream3_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA2_Stream4_IRQHandler
|
||||
.thumb_set DMA2_Stream4_IRQHandler,Default_Handler
|
||||
|
||||
.weak ETH_IRQHandler
|
||||
.thumb_set ETH_IRQHandler,Default_Handler
|
||||
|
||||
.weak ETH_WKUP_IRQHandler
|
||||
.thumb_set ETH_WKUP_IRQHandler,Default_Handler
|
||||
|
||||
.weak CAN2_TX_IRQHandler
|
||||
.thumb_set CAN2_TX_IRQHandler,Default_Handler
|
||||
|
||||
.weak CAN2_RX0_IRQHandler
|
||||
.thumb_set CAN2_RX0_IRQHandler,Default_Handler
|
||||
|
||||
.weak CAN2_RX1_IRQHandler
|
||||
.thumb_set CAN2_RX1_IRQHandler,Default_Handler
|
||||
|
||||
.weak CAN2_SCE_IRQHandler
|
||||
.thumb_set CAN2_SCE_IRQHandler,Default_Handler
|
||||
|
||||
.weak OTG_FS_IRQHandler
|
||||
.thumb_set OTG_FS_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA2_Stream5_IRQHandler
|
||||
.thumb_set DMA2_Stream5_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA2_Stream6_IRQHandler
|
||||
.thumb_set DMA2_Stream6_IRQHandler,Default_Handler
|
||||
|
||||
.weak DMA2_Stream7_IRQHandler
|
||||
.thumb_set DMA2_Stream7_IRQHandler,Default_Handler
|
||||
|
||||
.weak USART6_IRQHandler
|
||||
.thumb_set USART6_IRQHandler,Default_Handler
|
||||
|
||||
.weak I2C3_EV_IRQHandler
|
||||
.thumb_set I2C3_EV_IRQHandler,Default_Handler
|
||||
|
||||
.weak I2C3_ER_IRQHandler
|
||||
.thumb_set I2C3_ER_IRQHandler,Default_Handler
|
||||
|
||||
.weak OTG_HS_EP1_OUT_IRQHandler
|
||||
.thumb_set OTG_HS_EP1_OUT_IRQHandler,Default_Handler
|
||||
|
||||
.weak OTG_HS_EP1_IN_IRQHandler
|
||||
.thumb_set OTG_HS_EP1_IN_IRQHandler,Default_Handler
|
||||
|
||||
.weak OTG_HS_WKUP_IRQHandler
|
||||
.thumb_set OTG_HS_WKUP_IRQHandler,Default_Handler
|
||||
|
||||
.weak OTG_HS_IRQHandler
|
||||
.thumb_set OTG_HS_IRQHandler,Default_Handler
|
||||
|
||||
.weak DCMI_IRQHandler
|
||||
.thumb_set DCMI_IRQHandler,Default_Handler
|
||||
|
||||
.weak HASH_RNG_IRQHandler
|
||||
.thumb_set HASH_RNG_IRQHandler,Default_Handler
|
||||
|
||||
.weak FPU_IRQHandler
|
||||
.thumb_set FPU_IRQHandler,Default_Handler
|
||||
|
||||
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||
106
Src/pio/syscalls.c
Normal file
106
Src/pio/syscalls.c
Normal file
@@ -0,0 +1,106 @@
|
||||
/**
|
||||
* \file syscalls_stm32.c
|
||||
*
|
||||
* Implementation of newlib syscall.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "stm32f4xx.h"
|
||||
#if defined ( __GNUC__ ) /* GCC CS3 */
|
||||
#include <sys/stat.h>
|
||||
#endif
|
||||
#include <errno.h>
|
||||
#undef errno
|
||||
extern int errno;
|
||||
|
||||
extern size_t uart_debug_write(uint8_t *data, uint32_t size);
|
||||
|
||||
// Helper macro to mark unused parameters and prevent compiler warnings.
|
||||
// Appends _UNUSED to the variable name to prevent accidentally using them.
|
||||
#ifdef UNUSED
|
||||
#undef UNUSED
|
||||
#endif
|
||||
#ifdef __GNUC__
|
||||
#define UNUSED(x) x ## _UNUSED __attribute__((__unused__))
|
||||
#else
|
||||
#define UNUSED(x) x ## _UNUSED
|
||||
#endif
|
||||
|
||||
__attribute__((weak))
|
||||
caddr_t _sbrk(int incr)
|
||||
{
|
||||
extern char _estack; /* Defined in the linker script */
|
||||
extern char _Min_Stack_Size; /* Defined in the linker script */
|
||||
extern char _end; /* Defined by the linker */
|
||||
static char *heap_end = &_end ;
|
||||
char *prev_heap_end = heap_end;
|
||||
|
||||
if (heap_end + incr > (char *)__get_MSP()) {
|
||||
/* Heap and stack collision */
|
||||
errno = ENOMEM;
|
||||
return (caddr_t) -1;
|
||||
}
|
||||
/* Ensure to keep minimun stack size defined in the linker script */
|
||||
if (heap_end + incr >= (char *)(&_estack - &_Min_Stack_Size)) {
|
||||
errno = ENOMEM;
|
||||
return (caddr_t) -1;
|
||||
}
|
||||
|
||||
heap_end += incr ;
|
||||
return (caddr_t) prev_heap_end ;
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
int _close(UNUSED(int file))
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
int _fstat(UNUSED(int file), struct stat *st)
|
||||
{
|
||||
st->st_mode = S_IFCHR ;
|
||||
return 0;
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
int _isatty(UNUSED(int file))
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
int _lseek(UNUSED(int file), UNUSED(int ptr), UNUSED(int dir))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
int _read(UNUSED(int file), UNUSED(char *ptr), UNUSED(int len))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
int _write(UNUSED(int file), char *ptr, int len)
|
||||
{
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
void _exit(UNUSED(int status))
|
||||
{
|
||||
for (; ;) ;
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
int _kill(UNUSED(int pid), UNUSED(int sig))
|
||||
{
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
|
||||
__attribute__((weak))
|
||||
int _getpid(void)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
@@ -1,26 +1,31 @@
|
||||
/* SimSun_27.c - SimSun_27 font for UCGUI font driver */
|
||||
/* SimSun_27.c - SimSun_27 font for UCGUI font driver */
|
||||
/********************************************************************************************************
|
||||
* UCGUI
|
||||
* http://www.ucgui.com
|
||||
*
|
||||
* (c) Copyright 2005-2006, UCGUI专业论坛, 学习交流UCGUI
|
||||
* (c) Copyright 2005-2006, UCGUIרҵ<EFBFBD><EFBFBD>̳, ѧϰ<D1A7><CFB0><EFBFBD><EFBFBD>UCGUI
|
||||
*
|
||||
* ucgui@163.com 2005.07.31
|
||||
* 作者: ucgui
|
||||
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD>: ucgui
|
||||
*********************************************************************************************************
|
||||
*/
|
||||
//字体:Terminal 15号粗体
|
||||
/*0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ板绑备标厂出打底调动定度法繁返复关恢回挤加简减进冷料目喷却热日少设体头退未温文言移印于语预在增整正增整正置中准零上下一页风扇开速少单双普通三角洲默认最新暂停止床操作变确常快出时间件系统触屏校正主板本地盘总量载入选择机型连接闭高慢无请点击心点完成全半闭检查取消找不到卡插重试线网络密码端口更多状态已归换自第二四五平断续电+-_>''!~:;\/%., ?*/
|
||||
//<EFBFBD><EFBFBD><EFBFBD><EFBFBD>:Terminal 15<EFBFBD>Ŵ<EFBFBD><EFBFBD><EFBFBD>
|
||||
/*0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<EFBFBD><EFBFBD>곧<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ػֻؼ<EFBFBD><EFBFBD>Ӽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><EFBFBD>ȴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷ<EFBFBD><EFBFBD>δ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һҳ<EFBFBD><EFBFBD><EFBFBD>ȿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٵ<EFBFBD>˫<EFBFBD><EFBFBD>ͨ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĭ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹͣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD>ϵͳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>屾<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӱո<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȫ<EFBFBD><EFBFBD>ռ<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˿ڸ<EFBFBD><EFBFBD><EFBFBD>״̬<EFBFBD>ѹ黻<EFBFBD>Եڶ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>+-_>''!~:;\/%., ?*/
|
||||
#ifndef _FONT_LIB_H_
|
||||
#define _FONT_LIB_H_
|
||||
|
||||
#include "gui.h"
|
||||
#ifndef GUI_FLASH
|
||||
#define GUI_FLASH
|
||||
#endif
|
||||
#include "GUI.h"
|
||||
#ifndef GUI_FLASH
|
||||
#define GUI_FLASH
|
||||
#endif
|
||||
#if defined(__cplusplus)
|
||||
extern "C" { /* Make sure we have C-declarations in C++ programs */
|
||||
#endif
|
||||
extern GUI_FLASH const GUI_FONT GUI_FontHZ_fontHz14;
|
||||
extern GUI_FLASH const GUI_FONT GUI_FontHZ_fontHz16;
|
||||
extern GUI_FLASH const GUI_FONT GUI_FontHZ_fontHz18;
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -21,10 +21,10 @@ typedef struct
|
||||
|
||||
volatile int32_t background_color; //背景颜色
|
||||
volatile int32_t title_color; //标题颜色
|
||||
volatile int32_t state_background_color; //鐘舵€佹樉绀鸿儗鏅<EFBFBD><EFBFBD>鑹?
|
||||
volatile int32_t state_text_color; //鐘舵€佹樉绀烘枃瀛楅<EFBFBD>鑹查<EFBFBD>鑹?
|
||||
volatile int32_t filename_color; //鏂囦欢鍚嶆枃瀛楅<EFBFBD>鑹?
|
||||
volatile int32_t filename_background_color; //鏂囦欢鍚嶈儗鏅<EFBFBD><EFBFBD>鑹?
|
||||
volatile int32_t state_background_color; //状态显示背景颜<EFBFBD>?
|
||||
volatile int32_t state_text_color; //状态显示文字颜色颜<EFBFBD>?
|
||||
volatile int32_t filename_color; //文件名文字颜<EFBFBD>?
|
||||
volatile int32_t filename_background_color; //文件名背景颜<EFBFBD>?
|
||||
volatile int32_t printingstate_word_background_color;
|
||||
volatile int32_t printingstate_word_color;
|
||||
volatile int32_t btn_color;
|
||||
@@ -47,37 +47,37 @@ typedef struct
|
||||
volatile int32_t printfile_textcolor;
|
||||
volatile int8_t custom_pic_flag;
|
||||
volatile float curPos[3];
|
||||
volatile float curSprayerTemp[2]; // 2个喷头温度
|
||||
volatile float curBedTemp; //热床温度
|
||||
volatile float desireSprayerTemp[2];// 2个喷头目标温度
|
||||
volatile float desireBedTemp;// 热床目标温度
|
||||
volatile float curSprayerTemp[2]; // 2<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷ<EFBFBD>¶<EFBFBD>
|
||||
volatile float curBedTemp; //<EFBFBD>ȴ<EFBFBD><EFBFBD>¶<EFBFBD>
|
||||
volatile float desireSprayerTemp[2];// 2<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷĿ<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>
|
||||
volatile float desireBedTemp;// <EFBFBD>ȴ<EFBFBD>Ŀ<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>
|
||||
volatile float desireSprayerTempBak_1[2];
|
||||
|
||||
volatile float preheat_desireSprayerTemp[2];// 2个喷头目标温度
|
||||
volatile float preheat_desireBedTemp;// 热床目标温度
|
||||
volatile float preheat_desireSprayerTemp[2];// 2<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷĿ<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>
|
||||
volatile float preheat_desireBedTemp;// <EFBFBD>ȴ<EFBFBD>Ŀ<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>
|
||||
|
||||
|
||||
volatile int8_t curSprayerChoose; //当前选择的喷头
|
||||
volatile int8_t curSprayerChoose; //<EFBFBD><EFBFBD>ǰѡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷ
|
||||
volatile int8_t curSprayerChoose_bak;
|
||||
volatile int8_t curTempType; //喷头1、喷头2、热床
|
||||
volatile int8_t stepHeat; //?¤èè2???
|
||||
volatile int8_t fanOnoff; //风扇开关
|
||||
volatile uint8_t fanSpeed; //风扇速度
|
||||
volatile int8_t sprayerNum; // 喷头数
|
||||
volatile int8_t machineType; //机型
|
||||
volatile uint16_t printSpeed; //打印速度
|
||||
volatile uint16_t printExtSpeed0; //打印期间挤出速度
|
||||
volatile uint16_t printExtSpeed1; //打印期间挤出速度
|
||||
volatile uint8_t stepPrintSpeed; //打印速度调整步进
|
||||
volatile int8_t extruStep; //?·3??ù?è
|
||||
volatile int8_t extruSpeed; //挤出速度
|
||||
volatile int16_t moveSpeed; //移动速度
|
||||
volatile float move_dist; //移动距离
|
||||
volatile int8_t language; //语言
|
||||
volatile int8_t baud; //波特率
|
||||
volatile int8_t curTempType; //<EFBFBD><EFBFBD>ͷ1<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷ2<EFBFBD><EFBFBD><EFBFBD>ȴ<EFBFBD>
|
||||
volatile int8_t stepHeat; //?<EFBFBD>訨<EFBFBD><EFBFBD>2???
|
||||
volatile int8_t fanOnoff; //<EFBFBD><EFBFBD><EFBFBD>ȿ<EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile uint8_t fanSpeed; //<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٶ<EFBFBD>
|
||||
volatile int8_t sprayerNum; // <EFBFBD><EFBFBD>ͷ<EFBFBD><EFBFBD>
|
||||
volatile int8_t machineType; //<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile uint16_t printSpeed; //<EFBFBD><EFBFBD>ӡ<EFBFBD>ٶ<EFBFBD>
|
||||
volatile uint16_t printExtSpeed0; //<EFBFBD><EFBFBD>ӡ<EFBFBD>ڼ伷<EFBFBD><EFBFBD><EFBFBD>ٶ<EFBFBD>
|
||||
volatile uint16_t printExtSpeed1; //<EFBFBD><EFBFBD>ӡ<EFBFBD>ڼ伷<EFBFBD><EFBFBD><EFBFBD>ٶ<EFBFBD>
|
||||
volatile uint8_t stepPrintSpeed; //<EFBFBD><EFBFBD>ӡ<EFBFBD>ٶȵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile int8_t extruStep; //?<EFBFBD><EFBFBD>3??<EFBFBD><EFBFBD>?<3F><>
|
||||
volatile int8_t extruSpeed; //<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٶ<EFBFBD>
|
||||
volatile int16_t moveSpeed; //<EFBFBD>ƶ<EFBFBD><EFBFBD>ٶ<EFBFBD>
|
||||
volatile float move_dist; //<EFBFBD>ƶ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile int8_t language; //<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile int8_t baud; //<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
|
||||
volatile int8_t fileSysType; //文件系统类型
|
||||
volatile uint8_t touch_adj_flag; //触摸屏校正标志位
|
||||
volatile int8_t fileSysType; //<EFBFBD>ļ<EFBFBD>ϵͳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile uint8_t touch_adj_flag; //<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><EFBFBD><EFBFBD><EFBFBD>־λ
|
||||
volatile int32_t touch_adj_xMin;
|
||||
volatile int32_t touch_adj_xMax;
|
||||
volatile int32_t touch_adj_yMin;
|
||||
@@ -96,27 +96,27 @@ typedef struct
|
||||
volatile uint8_t func_btn2_display_flag;
|
||||
volatile uint8_t func_btn3_display_flag;
|
||||
|
||||
volatile uint8_t extern_chinese_flg;//外部字库。
|
||||
volatile uint8_t extern_chinese_flg;//<EFBFBD>ⲿ<EFBFBD>ֿ⡣
|
||||
|
||||
volatile uint8_t print_finish_close_machine_flg;
|
||||
|
||||
//volatile uint32_t filamentchange_speed;//换料速度
|
||||
//volatile uint8_t filamentchange_step;//换料步进
|
||||
//volatile uint32_t filamentchange_speed;//<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٶ<EFBFBD>
|
||||
//volatile uint8_t filamentchange_step;//<EFBFBD><EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD>
|
||||
//volatile uint32_t filament_limit_temper;
|
||||
|
||||
volatile uint8_t morefunc_cnt;
|
||||
|
||||
volatile uint16_t filament_load_speed;//换料速度
|
||||
volatile uint16_t filament_load_length;//换料步进
|
||||
//uint16_t filament_load_limit_temper;//换料的最低温度值
|
||||
volatile uint16_t filament_load_speed;//<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٶ<EFBFBD>
|
||||
volatile uint16_t filament_load_length;//<EFBFBD><EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD>
|
||||
//uint16_t filament_load_limit_temper;//<EFBFBD><EFBFBD><EFBFBD>ϵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ֵ
|
||||
volatile uint16_t filament_loading_time;
|
||||
volatile uint16_t filament_unload_speed;
|
||||
volatile uint16_t filament_unload_length;
|
||||
volatile uint16_t filament_limit_temper;
|
||||
volatile uint16_t filament_unloading_time;
|
||||
|
||||
volatile uint8_t leveling_mode;//调平模式0:手动调平,1:自动调平
|
||||
volatile uint8_t leveling_point_number;//手动调平设置坐标数(可设3/4/5三个值)
|
||||
volatile uint8_t leveling_mode;//<EFBFBD><EFBFBD>ƽģʽ0:<3A>ֶ<EFBFBD><D6B6><EFBFBD>ƽ<EFBFBD><C6BD>1:<3A>Զ<EFBFBD><D4B6><EFBFBD>ƽ
|
||||
volatile uint8_t leveling_point_number;//<EFBFBD>ֶ<EFBFBD><EFBFBD><EFBFBD>ƽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>3/4/5<><35><EFBFBD><EFBFBD>ֵ)
|
||||
|
||||
volatile int32_t leveling_point1_x;
|
||||
volatile int32_t leveling_point1_y;
|
||||
@@ -140,20 +140,20 @@ typedef struct
|
||||
volatile int16_t leveling_z_high;
|
||||
/******************************************add***************/
|
||||
volatile uint8_t rePrintFlag;
|
||||
volatile uint8_t pwrdn_mtrdn_level_flg;//断电电料逻辑电平标志,1:端口默认为高电平,0:端口默认为低电平
|
||||
volatile uint8_t pwrdn_mtrdn_level_flg;//<EFBFBD>ϵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƽ<EFBFBD><EFBFBD>־<EFBFBD><EFBFBD>1:<3A>˿<EFBFBD>Ĭ<EFBFBD><C4AC>Ϊ<EFBFBD>ߵ<EFBFBD>ƽ<EFBFBD><C6BD>0:<3A>˿<EFBFBD>Ĭ<EFBFBD><C4AC>Ϊ<EFBFBD>͵<EFBFBD>ƽ
|
||||
volatile int16_t Pause_ZADD;
|
||||
volatile int16_t Pause_XPOS;
|
||||
volatile int16_t Pause_YPOS;
|
||||
volatile uint8_t pre_fanSpeed;//预设风机速度
|
||||
//volatile uint8_t wifi_mode_sel;//wifi模式选择。
|
||||
volatile uint8_t custom_bed_flag;//热床定制
|
||||
volatile uint8_t firmware_type;//主板固件类型。1:marlin;2:repetier;3:smoothie
|
||||
volatile uint16_t preheat_max_desireSprayerTemp;//喷头最大目标温度
|
||||
volatile uint16_t preheat_max_desireBedTemp;//热床最大目标温度
|
||||
volatile uint8_t pre_fanSpeed;//Ԥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٶ<EFBFBD>
|
||||
//volatile uint8_t wifi_mode_sel;//wifiģʽѡ<EFBFBD><EFBFBD>
|
||||
volatile uint8_t custom_bed_flag;//<EFBFBD>ȴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile uint8_t firmware_type;//<EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><EFBFBD><EFBFBD><EFBFBD>͡<EFBFBD>1:marlin;2:repetier;3:smoothie
|
||||
volatile uint16_t preheat_max_desireSprayerTemp;//<EFBFBD><EFBFBD>ͷ<EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>
|
||||
volatile uint16_t preheat_max_desireBedTemp;//<EFBFBD>ȴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>
|
||||
volatile float curSprayerTempBak[2];
|
||||
volatile float desireSprayerTempBak[2];
|
||||
volatile float curBedTempBak;
|
||||
volatile volatile float desireBedTempBak;
|
||||
volatile float desireBedTempBak;
|
||||
volatile uint8_t pwd_reprint_flg;
|
||||
volatile float breakpoint_z_error;
|
||||
|
||||
@@ -167,24 +167,24 @@ typedef struct
|
||||
volatile unsigned char sd_saving;
|
||||
volatile uint8_t getzpos_flg;
|
||||
volatile uint8_t getzpos_enable;
|
||||
volatile float zpos;//z轴坐标值
|
||||
volatile float zpos;//z<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ
|
||||
volatile unsigned char move_z_coordinate[20];
|
||||
|
||||
volatile uint8_t insert_det_module;// 1:接入220det模块,其他值:接PWC关机模块。PWC可以替代220det模块。
|
||||
volatile uint8_t insert_det_module;// 1:<EFBFBD><EFBFBD><EFBFBD><EFBFBD>220detģ<EFBFBD>飬<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ:<3A><>PWC<57>ػ<EFBFBD>ģ<EFBFBD>顣PWC<57><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>220detģ<EFBFBD>顣
|
||||
|
||||
volatile uint8_t filament_det1_level_flg;// 断料检测1;1:高电平触发,0低电平触发。
|
||||
volatile uint8_t filament_det2_level_flg;// 断料检测2;1:高电平触发,0低电平触发
|
||||
volatile uint8_t filament_det1_level_flg;// <EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><EFBFBD>1<EFBFBD><EFBFBD>1:<3A>ߵ<EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD>͵<EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile uint8_t filament_det2_level_flg;// <EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><EFBFBD>2<EFBFBD><EFBFBD>1:<3A>ߵ<EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD>͵<EFBFBD>ƽ<EFBFBD><C6BD><EFBFBD><EFBFBD>
|
||||
volatile uint8_t multiple_language;
|
||||
volatile uint8_t overturn_180; //屏幕翻转180°
|
||||
volatile uint8_t overturn_180; //<EFBFBD><EFBFBD>Ļ<EFBFBD><EFBFBD>ת180<EFBFBD><EFBFBD>
|
||||
volatile uint8_t user_rotation;
|
||||
volatile char wifi_ap[32]; //wifi网络名称字符串
|
||||
volatile char wifi_key[64]; //wifi密码字符串
|
||||
volatile char wifi_ap[32]; //wifi<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile char wifi_key[64]; //wifi<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><EFBFBD><EFBFBD>
|
||||
volatile uint8_t wifi_mode_sel;
|
||||
uint8_t wifi_type; // HLK: 0x01 , ESP: 0X02
|
||||
|
||||
volatile char cloud_enable;
|
||||
volatile char cloud_hostUrl[96]; //云连接地址
|
||||
volatile int cloud_port; //云连接端口
|
||||
volatile char cloud_hostUrl[96]; //<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӵ<EFBFBD>ַ
|
||||
volatile int cloud_port; //<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӷ˿<EFBFBD>
|
||||
|
||||
volatile float Zoffset;
|
||||
volatile float stepZoffset;
|
||||
@@ -193,12 +193,12 @@ typedef struct
|
||||
|
||||
volatile uint8_t display_style;
|
||||
volatile uint8_t mask_PB0_PB1_Function;
|
||||
volatile uint8_t btn_text_offset;//按钮字体偏移底边位置
|
||||
volatile uint8_t btn_text_offset;//<EFBFBD><EFBFBD>ť<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƫ<EFBFBD>Ƶױ<EFBFBD>λ<EFBFBD><EFBFBD>
|
||||
|
||||
volatile uint8_t add_checkSum; //M110是否加校验标志位
|
||||
volatile uint8_t display_error; //显示报错信息标志位
|
||||
volatile uint8_t restart_data_init; //resend 5次后重新初始化SD卡标志位
|
||||
volatile uint8_t has_flash_pre_view;//有图片预览
|
||||
volatile uint8_t add_checkSum; //M110<EFBFBD>Ƿ<EFBFBD><EFBFBD>У<EFBFBD><EFBFBD><EFBFBD>־λ
|
||||
volatile uint8_t display_error; //<EFBFBD><EFBFBD>ʾ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><EFBFBD>־λ
|
||||
volatile uint8_t restart_data_init; //resend 5<EFBFBD>κ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>³<EFBFBD>ʼ<EFBFBD><EFBFBD>SD<EFBFBD><EFBFBD><EFBFBD><EFBFBD>־λ
|
||||
volatile uint8_t has_flash_pre_view;//<EFBFBD><EFBFBD>ͼƬԤ<EFBFBD><EFBFBD>
|
||||
volatile uint8_t baby_step_display_flg;
|
||||
volatile uint8_t calibrate_disp_flag;
|
||||
volatile uint8_t wifi_scan;
|
||||
@@ -627,7 +627,7 @@ void recover_cfg_inf_tft();
|
||||
#define SPEAKER PAout(2)
|
||||
#define RESET_1963 PDout(6)
|
||||
#define PULLUP(IO,v) //{pinMode(IO, (v!=LOW ? INPUT_PULLUP : INPUT)); }
|
||||
#define ARDUINO 101//?aá?è?±à3ìí¨1y£??aê?ARDUINOμ?°?±?o?
|
||||
#define ARDUINO 101//?a<EFBFBD><EFBFBD>?<3F><>?<3F><><EFBFBD><EFBFBD>3<EFBFBD><33><EFBFBD><EFBFBD><EFBFBD><EFBFBD>1y<31><79>??a<EFBFBD><EFBFBD>?ARDUINO<EFBFBD><EFBFBD>?<3F><>?<3F><>?o?
|
||||
|
||||
// HC-chen 2017.7.26
|
||||
#if 0
|
||||
@@ -720,13 +720,13 @@ void bakup_file_path(uint8_t *path, uint32_t len);
|
||||
#define PUTDOWN_TIME 50
|
||||
|
||||
//#define OFFSETLENGTH 0x100000 //1M
|
||||
#define OFFSETLENGTH 0x19000 //100K 回溯长度
|
||||
#define OFFSETLENGTH 0x19000 //100K <EFBFBD><EFBFBD><EFBFBD>ݳ<EFBFBD><EFBFBD><EFBFBD>
|
||||
|
||||
#define COORDINATELENGTH 20
|
||||
|
||||
#if 0
|
||||
#define EEPROM_HIGH_ADDR 256
|
||||
#define BAK_REPRINT_INFO EEPROM_HIGH_ADDR - 4 // 续打标志(uint8_t) | 喷头选择(高4位) 风扇开关状态(低四位)|风速8位| 热床温度8位
|
||||
#define BAK_REPRINT_INFO EEPROM_HIGH_ADDR - 4 // <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־(uint8_t) | <EFBFBD><EFBFBD>ͷѡ<EFBFBD><EFBFBD>(<28><>4λ) <20><><EFBFBD>ȿ<EFBFBD><C8BF><EFBFBD>״̬(<28><><EFBFBD><EFBFBD>λ)|<7C><><EFBFBD><EFBFBD>8λ| <20>ȴ<EFBFBD><C8B4>¶<EFBFBD>8λ
|
||||
#define BAK_REPRINT_OFFSET BAK_REPRINT_INFO - 4 // offset(uint32_t)
|
||||
#define BAK_REPRINT_HTEMP BAK_REPRINT_OFFSET - 4 // T0Temp(uint16_t) | T1Temp(uint16_t)
|
||||
#define BAK_REPRINT_FAN BAK_REPRINT_HTEMP - 4 // BedTemp(uint8_t) | fanOnoff(uint8_t) |fanSpeed(uint8_t)| null(uint8_t)
|
||||
@@ -737,13 +737,13 @@ void bakup_file_path(uint8_t *path, uint32_t len);
|
||||
#define BAK_REPRINT_S BAK_REPRINT_Z - 4 //null(uint24_t) | saveFlag(uint8_t)
|
||||
#endif
|
||||
#endif
|
||||
//采用连续写e2prom的方式,
|
||||
//重新定义了断电数据的存储位置
|
||||
//<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>дe2prom<EFBFBD>ķ<EFBFBD>ʽ<EFBFBD><EFBFBD>
|
||||
//<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˶ϵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݵĴ洢λ<EFBFBD><EFBFBD>
|
||||
#define EEPROM_HIGH_ADDR 256
|
||||
#define BAK_REPRINT_TIME EEPROM_HIGH_ADDR - 4 //hours(int16_t) | minutes(int8_t) ;
|
||||
#define BAK_REPRINT_HTEMP BAK_REPRINT_TIME - 4 // T0Temp(uint16_t) | T1Temp(uint16_t)
|
||||
#define BAK_REPRINT_OFFSET BAK_REPRINT_HTEMP - 4 // offset(uint32_t)
|
||||
#define BAK_REPRINT_INFO BAK_REPRINT_OFFSET - 4 // 续打标志(uint8_t) | 喷头选择(高4位) 风扇开关状态(低四位)|风速8位| 热床温度8位
|
||||
#define BAK_REPRINT_INFO BAK_REPRINT_OFFSET - 4 // <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־(uint8_t) | <EFBFBD><EFBFBD>ͷѡ<EFBFBD><EFBFBD>(<28><>4λ) <20><><EFBFBD>ȿ<EFBFBD><C8BF><EFBFBD>״̬(<28><><EFBFBD><EFBFBD>λ)|<7C><><EFBFBD><EFBFBD>8λ| <20>ȴ<EFBFBD><C8B4>¶<EFBFBD>8λ
|
||||
#define BAK_REPRINT_X BAK_REPRINT_INFO - 4 // X position
|
||||
#define BAK_REPRINT_Y BAK_REPRINT_X - 4 //Y position
|
||||
#define BAK_REPRINT_Z BAK_REPRINT_Y - 4 //Z position
|
||||
|
||||
118
configure-build.py
Normal file
118
configure-build.py
Normal file
@@ -0,0 +1,118 @@
|
||||
import os
|
||||
import sys
|
||||
import re
|
||||
import xml.etree.ElementTree as ET
|
||||
|
||||
Import("env")
|
||||
platform = env.PioPlatform()
|
||||
board = env.BoardConfig()
|
||||
|
||||
# read IAR project file
|
||||
def export_iar_project():
|
||||
files = []
|
||||
def get_files_from_group(group):
|
||||
return [x.text.replace('$PROJ_DIR$\\..\\', '.\\').replace('\\', '/') for x in group.findall('file/name')]
|
||||
|
||||
def get_group(group, files):
|
||||
for type_tag in group.findall('group'):
|
||||
f = get_files_from_group(type_tag)
|
||||
files += [x for x in f if (x.endswith('.cpp') or x.endswith('.c'))]
|
||||
get_group(type_tag, files)
|
||||
|
||||
root = ET.parse(os.path.join(env['PROJECT_DIR'], 'EWARM/mkstft35.ewp')).getroot()
|
||||
get_group(root, files)
|
||||
with open(os.path.join(env['PROJECT_DIR'], 'source-files.txt'), 'wt') as fp:
|
||||
for f in files:
|
||||
fp.write(f + "\n")
|
||||
exit(1)
|
||||
|
||||
# export_iar_project()
|
||||
|
||||
def load_source_files():
|
||||
files = ''
|
||||
with open('./source-files.txt', 'rt') as fp:
|
||||
files = ' '.join(["+<"+x.strip()+">" for x in fp.readlines()])
|
||||
|
||||
src_filter = ' '.join(env.GetProjectOption('src_filter'))
|
||||
src_filter += files
|
||||
proj = env.GetProjectConfig()
|
||||
proj.set("env:" + env['PIOENV'], 'src_filter', src_filter)
|
||||
env.Replace(SRC_FILTER=src_filter)
|
||||
|
||||
load_source_files()
|
||||
|
||||
env.Append(CPPPATH=[
|
||||
os.path.join(env['PROJECT_DIR'], 'Inc'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Drivers', 'STM32F4xx_HAL_Driver', 'Inc'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Drivers', 'CMSIS', 'Device', 'ST', 'STM32F4xx', 'Include'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Drivers', 'CMSIS', 'Include'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Middlewares', 'Third_Party', 'FatFs', 'src'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Middlewares', 'ST', 'STM32_USB_Host_Library', 'Class', 'MSC', 'Inc'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Middlewares', 'Third_Party', 'FatFs', 'src', 'drivers'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Drivers', 'STM32F4xx_MKS_Driver', 'Inc'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Drivers', 'STM32F4xx_MKS_Driver', 'Src'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Drivers', 'libstmf4', 'include'),
|
||||
os.path.join(env['PROJECT_DIR'], 'User', 'others'),
|
||||
os.path.join(env['PROJECT_DIR'], 'User', 'ui'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Drivers', 'libstmf4'),
|
||||
os.path.join(env['PROJECT_DIR'], 'User', 'uart_model'),
|
||||
os.path.join(env['PROJECT_DIR'], 'User', 'others', 'Multi_language'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Middlewares', 'GUI'),
|
||||
os.path.join(env['PROJECT_DIR'], 'User', 'others', 'QRENCODE'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Middlewares', 'Config'),
|
||||
os.path.join(env['PROJECT_DIR'], 'Middlewares', 'ST', 'STM32_USB_Host_Library', 'Core', 'Inc'),
|
||||
])
|
||||
|
||||
env.Append(
|
||||
CFLAGS=['-mcpu=cortex-m4',
|
||||
'-mthumb',
|
||||
'-ffunction-sections',
|
||||
'-fdata-sections',
|
||||
'-nostdlib',
|
||||
'-std=gnu11',
|
||||
"-fmerge-constants",
|
||||
# '-funwind-tables',
|
||||
# '-fasynchronous-unwind-tables',
|
||||
"--param",
|
||||
"max-inline-insns-single=500",
|
||||
"-mfpu=fpv4-sp-d16", "-mfloat-abi=hard",
|
||||
"--specs=nano.specs",
|
||||
],
|
||||
|
||||
ASFLAGS=[
|
||||
"-x", "assembler-with-cpp",
|
||||
'-mcpu=cortex-m4',
|
||||
'-mthumb',
|
||||
"-mfpu=fpv4-sp-d16", "-mfloat-abi=hard",
|
||||
"--specs=nano.specs",
|
||||
],
|
||||
|
||||
CXXFLAGS=[
|
||||
"-fpermissive",
|
||||
"-Wno-register",
|
||||
"-std=gnu++11",
|
||||
"-fno-rtti",
|
||||
"-fno-exceptions",
|
||||
"-fno-threadsafe-statics",
|
||||
"-fno-use-cxa-atexit",
|
||||
],
|
||||
|
||||
LINKFLAGS=[
|
||||
"-mthumb",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mfpu=fpv4-sp-d16", "-mfloat-abi=hard",
|
||||
"--specs=nano.specs",
|
||||
"-Wl,--check-sections",
|
||||
"-Wl,--unresolved-symbols=report-all",
|
||||
"-Wl,--warn-common",
|
||||
"-Wl,--warn-section-align",
|
||||
"-Wl,--warn-unresolved-symbols",
|
||||
],
|
||||
|
||||
LIBS=["arm_cortexM4lf_math", "GUI"],
|
||||
|
||||
LIBPATH=[os.path.join(env['PROJECT_DIR'], 'Src', 'pio', 'libs')]
|
||||
)
|
||||
env.Append(CXXFLAGS=env['CFLAGS'])
|
||||
|
||||
env.Prepend(LINKFLAGS=['-T', "Src/pio/ldscript.ld"])
|
||||
26
encrypt-firmware.py
Normal file
26
encrypt-firmware.py
Normal file
@@ -0,0 +1,26 @@
|
||||
import os,sys
|
||||
Import("env")
|
||||
|
||||
from SCons.Script import DefaultEnvironment
|
||||
board = DefaultEnvironment().BoardConfig()
|
||||
|
||||
def encrypt(source, target, env):
|
||||
key = [0xA3, 0xBD, 0xAD, 0x0D, 0x41, 0x11, 0xBB, 0x8D, 0xDC, 0x80, 0x2D, 0xD0, 0xD2, 0xC4, 0x9B, 0x1E, 0x26, 0xEB, 0xE3, 0x33, 0x4A, 0x15, 0xE4, 0x0A, 0xB3, 0xB1, 0x3C, 0x93, 0xBB, 0xAF, 0xF7, 0x3E]
|
||||
firmware = open(target[0].path, "rb")
|
||||
robin = open(target[0].dir.path +'/'+ board.get("build.firmware"), "wb")
|
||||
length = os.path.getsize(target[0].path)
|
||||
position = 0
|
||||
try:
|
||||
while position < length:
|
||||
byte = firmware.read(1)
|
||||
if position >= 320 and position < 31040:
|
||||
byte = chr(ord(byte) ^ key[position & 31])
|
||||
if sys.version_info[0] > 2:
|
||||
byte = bytes(byte, 'latin1')
|
||||
robin.write(byte)
|
||||
position += 1
|
||||
finally:
|
||||
firmware.close()
|
||||
robin.close()
|
||||
|
||||
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", encrypt)
|
||||
44
platformio.ini
Normal file
44
platformio.ini
Normal file
@@ -0,0 +1,44 @@
|
||||
; PlatformIO Project Configuration File
|
||||
;
|
||||
; Build options: build flags, source filter
|
||||
; Upload options: custom upload port, speed and extra flags
|
||||
; Library options: dependencies, extra library storages
|
||||
; Advanced options: extra scripting
|
||||
;
|
||||
; Please visit documentation for the other options and examples
|
||||
; https://docs.platformio.org/page/projectconf.html
|
||||
|
||||
[platformio]
|
||||
src_dir = .
|
||||
include_dir = .
|
||||
default_envs = MKS_TFT35
|
||||
|
||||
[env]
|
||||
platform = ststm32
|
||||
debug_tool = jlink
|
||||
upload_protocol = jlink
|
||||
src_filter = -<Src> -<Drivers> -<Middlewares> -<User>
|
||||
extra_scripts = pre:configure-build.py
|
||||
post:encrypt-firmware.py
|
||||
|
||||
[env:MKS_TFT35]
|
||||
board = genericSTM32F407VET6
|
||||
board_build.firmware = mkstft35.bin
|
||||
board_build.offset = 0xC000
|
||||
build_flags = -DTFT35
|
||||
-Wl,--defsym=LD_MAX_DATA_SIZE=131032
|
||||
-Wl,--defsym=LD_FLASH_OFFSET=0xC000
|
||||
-Wl,--defsym=LD_MAX_SIZE=524288
|
||||
-DSTM32F4
|
||||
-DSTM32F407xx
|
||||
-DSTM32F40XX
|
||||
-DUSE_HAL_DRIVER
|
||||
-DSTM32F40_41xxx
|
||||
-DUSE_HAL_LIB
|
||||
-DVECT_TAB_OFFSET=0xC000
|
||||
-includeInc/dump_define.h
|
||||
-Wp,-w
|
||||
-fmax-errors=1
|
||||
-Os
|
||||
-g3
|
||||
board_upload.offset_address = 0x0800C000
|
||||
167
source-files.txt
Normal file
167
source-files.txt
Normal file
@@ -0,0 +1,167 @@
|
||||
./Src/pio/
|
||||
./Src/adc.c
|
||||
./Src/bsp_driver_sd.c
|
||||
./Src/dac.c
|
||||
./Src/dma.c
|
||||
./Src/fatfs.c
|
||||
./Src/fsmc.c
|
||||
./Src/gpio.c
|
||||
./Src/i2c.c
|
||||
./Src/iwdg.c
|
||||
./Src/main.cpp
|
||||
./Src/rtc.c
|
||||
./Src/sdio.c
|
||||
./Src/spi.c
|
||||
./Src/stm32f4xx_hal_msp.c
|
||||
./Src/stm32f4xx_it.c
|
||||
./Src/tim.c
|
||||
./Src/usart.c
|
||||
./Src/usb_host.c
|
||||
./Src/usbh_conf.c
|
||||
./User/others/Multi_language/Font24_MS.c
|
||||
./User/others/fontHz18.c
|
||||
./User/others/fs_usr.cpp
|
||||
./User/others/Multi_language/Helvetica26.c
|
||||
./User/others/Multi_language/Helvetica36.c
|
||||
./User/others/ili9320.c
|
||||
./User/others/mks_cfg.cpp
|
||||
./User/others/mks_fontHz14.c
|
||||
./User/others/mks_touch_screen.c
|
||||
./User/others/Multi_language/multi_language.cpp
|
||||
./User/others/pic.c
|
||||
./User/others/pic_manager.cpp
|
||||
./User/others/sd_usr.cpp
|
||||
./User/others/string_deal.c
|
||||
./User/others/touch_calibrate.cpp
|
||||
./User/others/wifi_module.cpp
|
||||
./User/others/wifi_upload.cpp
|
||||
./User/others/QRENCODE/bitstream.c
|
||||
./User/others/QRENCODE/mask.c
|
||||
./User/others/QRENCODE/mmask.c
|
||||
./User/others/QRENCODE/mqrspec.c
|
||||
./User/others/QRENCODE/QR_Encode.c
|
||||
./User/others/QRENCODE/qrencode.c
|
||||
./User/others/QRENCODE/qrinput.c
|
||||
./User/others/QRENCODE/qrspec.c
|
||||
./User/others/QRENCODE/rscode.c
|
||||
./User/others/QRENCODE/split.c
|
||||
./User/uart_model/mks_tft_fifo.cpp
|
||||
./User/uart_model/mks_tft_function.c
|
||||
./User/uart_model/mks_tft_gcode.cpp
|
||||
./User/uart_model/mks_tft_protocol.c
|
||||
./User/uart_model/mks_tft_reprint.cpp
|
||||
./User/uart_model/mks_tft_test.cpp
|
||||
./User/uart_model/MKS_USART2_IT.cpp
|
||||
./User/ui/draw_about.cpp
|
||||
./User/ui/draw_acceleration.cpp
|
||||
./User/ui/draw_advanced.cpp
|
||||
./User/ui/draw_babyStep.cpp
|
||||
./User/ui/draw_baud_rate.cpp
|
||||
./User/ui/draw_bind.cpp
|
||||
./User/ui/draw_buttonConf.cpp
|
||||
./User/ui/draw_change_speed.cpp
|
||||
./User/ui/draw_current_settings.cpp
|
||||
./User/ui/draw_CustomConf.cpp
|
||||
./User/ui/draw_dialog.cpp
|
||||
./User/ui/draw_disk.cpp
|
||||
./User/ui/draw_display_conf.cpp
|
||||
./User/ui/draw_extrusion.cpp
|
||||
./User/ui/draw_fan.cpp
|
||||
./User/ui/draw_filament_settings.cpp
|
||||
./User/ui/draw_filamentchange.cpp
|
||||
./User/ui/draw_FileTransfer_ui.cpp
|
||||
./User/ui/draw_firmware_type.cpp
|
||||
./User/ui/draw_keyboard.cpp
|
||||
./User/ui/draw_language.cpp
|
||||
./User/ui/draw_leveling_settings.cpp
|
||||
./User/ui/draw_levelingPara_config.cpp
|
||||
./User/ui/draw_log_ui.cpp
|
||||
./User/ui/draw_machine.cpp
|
||||
./User/ui/draw_machine_para.cpp
|
||||
./User/ui/draw_machine_settings.cpp
|
||||
./User/ui/draw_machine_type.cpp
|
||||
./User/ui/draw_main.cpp
|
||||
./User/ui/draw_manual_leveling.cpp
|
||||
./User/ui/draw_MaxFeedRate.cpp
|
||||
./User/ui/draw_more.cpp
|
||||
./User/ui/draw_MoreBtns.cpp
|
||||
./User/ui/draw_motor_settings.cpp
|
||||
./User/ui/draw_move_motor.cpp
|
||||
./User/ui/draw_number_key.cpp
|
||||
./User/ui/draw_operate.cpp
|
||||
./User/ui/draw_Pause_pos.cpp
|
||||
./User/ui/draw_pause_ui.cpp
|
||||
./User/ui/draw_pre_heat.cpp
|
||||
./User/ui/draw_print_file.cpp
|
||||
./User/ui/draw_printing.cpp
|
||||
./User/ui/draw_printing_moremenu.cpp
|
||||
./User/ui/draw_printMoreBtn.cpp
|
||||
./User/ui/draw_ready_print.cpp
|
||||
./User/ui/draw_set.cpp
|
||||
./User/ui/draw_Sprayer.cpp
|
||||
./User/ui/draw_steps.cpp
|
||||
./User/ui/draw_temp_ui.cpp
|
||||
./User/ui/draw_temperature_settings.cpp
|
||||
./User/ui/draw_Tips.cpp
|
||||
./User/ui/draw_TMC_sensitivity.cpp
|
||||
./User/ui/draw_tool.cpp
|
||||
./User/ui/draw_ui.cpp
|
||||
./User/ui/draw_wifi.cpp
|
||||
./User/ui/draw_wifi_list.cpp
|
||||
./User/ui/draw_XYZLevelPara.cpp
|
||||
./User/ui/draw_zero.cpp
|
||||
./User/ui/draw_zoffset.cpp
|
||||
./User/ui/id_manage.c
|
||||
./Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c
|
||||
./Drivers/libstmf4/source/misc.c
|
||||
./Drivers/libstmf4/source/stm32f4xx_exti.c
|
||||
./Drivers/libstmf4/source/stm32f4xx_fsmc.c
|
||||
./Drivers/libstmf4/source/stm32f4xx_gpio.c
|
||||
./Drivers/libstmf4/source/stm32f4xx_spi.c
|
||||
./Drivers/libstmf4/source/stm32f4xx_usart.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_sdmmc.c
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c
|
||||
./Drivers/STM32F4xx_MKS_Driver/Src/spi_flash.c
|
||||
./Middlewares/Third_Party/FatFs/src/diskio.c
|
||||
./Middlewares/Third_Party/FatFs/src/ff.c
|
||||
./Middlewares/Third_Party/FatFs/src/ff_gen_drv.c
|
||||
./Middlewares/Third_Party/FatFs/src/option/mycc936.c
|
||||
./Middlewares/Third_Party/FatFs/src/drivers/sd_diskio.c
|
||||
./Middlewares/Third_Party/FatFs/src/option/syscall.c
|
||||
./Middlewares/Third_Party/FatFs/src/drivers/usbh_diskio.c
|
||||
./Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_core.c
|
||||
./Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ctlreq.c
|
||||
./Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ioreq.c
|
||||
./Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc.c
|
||||
./Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_bot.c
|
||||
./Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_scsi.c
|
||||
./Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_pipes.c
|
||||
Reference in New Issue
Block a user