Skip to content

Commit

Permalink
V1.2
Browse files Browse the repository at this point in the history
*. Fixed GPIO conflict in class PixelDmxStartStop
*. Implemented vanvught/rpidmx512#232
*. Code clean-up.
*. Removed not used source files.
  • Loading branch information
vanvught committed Feb 25, 2022
1 parent 03d651e commit 692ebaf
Show file tree
Hide file tree
Showing 101 changed files with 36,275 additions and 46,209 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ lib-network/src/emac/*
lib-network/src/net/*

*.bin



do-tftp.sh
udp_send

2 changes: 1 addition & 1 deletion Board-tester/.settings/language.settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/>
<provider class="org.eclipse.cdt.internal.build.crossgcc.CrossGCCBuiltinSpecsDetector" console="false" env-hash="760542490832466471" id="org.eclipse.cdt.build.crossgcc.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT Cross GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<provider class="org.eclipse.cdt.internal.build.crossgcc.CrossGCCBuiltinSpecsDetector" console="false" env-hash="760699261222354471" id="org.eclipse.cdt.build.crossgcc.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT Cross GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/>
</provider>
Expand Down
9,013 changes: 4,175 additions & 4,838 deletions Board-tester/gd32f10x.list

Large diffs are not rendered by default.

1,100 changes: 539 additions & 561 deletions Board-tester/gd32f10x.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# GD32F103RC-DMX512-RDM
The master source code is available here -> [https://github.com/vanvught/rpidmx512](https://github.com/vanvught/rpidmx512)

A development board is available here -> [https://github.com/vanvught/GD32F103R-GD32F107R-GD32F207R-dev-board](https://github.com/vanvught/GD32F103R-GD32F107R-GD32F207R-dev-board)
A development board is available here -> [https://github.com/vanvught/GD32FxxxR-dev-board](https://github.com/vanvught/GD32FxxxR-dev-board)

Full documentation will be available here -> [https://www.gd32-dmx.org](https://www.gd32-dmx.org)

Expand Down
1 change: 0 additions & 1 deletion docs/_config.yml

This file was deleted.

37 changes: 0 additions & 37 deletions docs/index.md

This file was deleted.

1 change: 1 addition & 0 deletions firmware-template-gd32/Rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ LIBDEP=$(addprefix ../lib-,$(LIBS))
$(info $$LIBDEP [${LIBDEP}])

COPS=-DBARE_METAL -DGD32 -DGD32F10X_HD -D$(BOARD)
COPS+=-DDISABLE_PRINTF_FLOAT
COPS+=$(DEFINES) $(MAKE_FLAGS) $(INCLUDES)
COPS+=$(LIBINCDIRS)
COPS+=-Os -mcpu=cortex-m3 -mthumb
Expand Down
11 changes: 4 additions & 7 deletions firmware-template-gd32/gd32f103rc_flash.ld
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* memory map */
MEMORY
{
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 256K
Expand All @@ -11,8 +10,7 @@ SECTIONS
{
__heap_size = DEFINED(__heap_size) ? __heap_size : 4K;
__stack_size = DEFINED(__stack_size) ? __stack_size : 4K;

/* ISR vectors */

.vectors :
{
. = ALIGN(4);
Expand All @@ -25,6 +23,8 @@ SECTIONS
.text :
{
. = ALIGN(4);
*(.text.unlikely*)
*(.text.hot*)
*(.text)
*(.text*)
*(.glue_7)
Expand Down Expand Up @@ -82,15 +82,13 @@ SECTIONS
PROVIDE_HIDDEN (__fini_array_end = .);
} >FLASH

/* provide some necessary symbols for startup file to initialize data */
_sidata = LOADADDR(.data);
.data :
{
. = ALIGN(4);
_sdata = .;
*(.data)
*(.data*)

. = ALIGN(4);
_edata = .;
} >RAM AT> FLASH
Expand All @@ -103,7 +101,6 @@ SECTIONS
*(.bss)
*(.bss*)
*(COMMON)

. = ALIGN(4);
_ebss = .;
__bss_end__ = _ebss;
Expand Down Expand Up @@ -140,4 +137,4 @@ SECTIONS
}

/* input sections */
GROUP(libgcc.a libc.a)
GROUP(libgcc.a libc.a)
2 changes: 1 addition & 1 deletion firmware-template-gd32/include/software_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
#ifndef SOFTWARE_VERSION_H_
#define SOFTWARE_VERSION_H_

constexpr char SOFTWARE_VERSION[] = "1.1";
constexpr char SOFTWARE_VERSION[] = "1.2";

#endif /* SOFTWARE_VERSION_H_ */
1 change: 1 addition & 0 deletions firmware-template-gd32/lib/Rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ DEFINES:=$(addprefix -D,$(DEFINES))
DEFINES+=-D_TIME_STAMP_YEAR_=$(shell date +"%Y") -D_TIME_STAMP_MONTH_=$(shell date +"%-m") -D_TIME_STAMP_DAY_=$(shell date +"%-d")

COPS=-DBARE_METAL -DGD32 -DGD32F10X_HD -D$(BOARD)
COPS+=-DDISABLE_PRINTF_FLOAT
COPS+=$(DEFINES) $(MAKE_FLAGS) $(INCLUDES)
COPS+=-Os -mcpu=cortex-m3 -mthumb
COPS+=-nostartfiles -ffreestanding -nostdlib
Expand Down
35 changes: 0 additions & 35 deletions gd32_dmx_usb_pro/do-tftp.sh

This file was deleted.

Loading

0 comments on commit 692ebaf

Please sign in to comment.