Skip to content

Commit 34253f0

Browse files
committed
V2.1
- Improved startup_gd32fxxx.S - CMSIS has its own project now - Upgraded to CMSIS V5.0.5 - Removed lib-debug. Now part of lib-hal - Updated to latest GD32 Firmware - Introduced debug software UART0 - Major cleanup lib-configstore - In order to support Newlib; removed lib-c, lib-c++ and added lib-clib - In order to support FreeRTOS; Added Software timers in H.A.L. framework. - Get/Set pixel type by RDM (introduced by @PharosMarcusB)
1 parent de921e7 commit 34253f0

527 files changed

Lines changed: 31381 additions & 16306 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/c-cpp.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: C/C++ CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- '*'
67
pull_request:
7-
branches: [ main ]
8+
branches:
9+
- '*'
810

911
jobs:
1012
build:
@@ -15,12 +17,6 @@ jobs:
1517
- uses: actions/checkout@v2
1618
- name: Install arm-none-eabi
1719
run: sudo apt install gcc-arm-none-eabi
18-
- name: make Board-tester
19-
run: |
20-
cd Board-tester
21-
make -f Makefile.GD32 clean
22-
make -f Makefile.GD32
23-
cd -
2420
- name: make gd32_dmx_usb_pro
2521
run: |
2622
cd gd32_dmx_usb_pro
@@ -33,4 +29,3 @@ jobs:
3329
make -f Makefile.GD32 clean
3430
make -f Makefile.GD32
3531
cd -
36-

.gitignore

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,28 @@
3131
*.out
3232
*.app
3333

34-
.DS_Store
34+
#Eclipse user settings
35+
/.metadata/
3536

3637
lib_gd32
3738
build_gd32
3839

40+
software_version_id.h
41+
42+
.DS_Store
3943
._*
4044
._*.*
41-
sofware_version_id.h
4245
*._gd32
4346

4447
gd32f2*.*
4548
lib-gd32/gd32f2*/*
4649

47-
gd32f3*.*
48-
lib-gd32/gd32f3*/*
49-
5050
gd32f4*.*
5151
lib-gd32/gd32f4*/*
5252

53+
gd32h7*.*
54+
lib-gd32/gd32h7*/*
55+
5356
lib-*/src/esp8266/*
5457
lib-*/include/esp8266/*
5558

@@ -63,6 +66,9 @@ lib-network/src/apps/*
6366
lib-network/src/emac/*
6467
lib-network/src/net/*
6568

69+
FreeRTOS*.*
70+
Artnet*.*
71+
6672
*.list
6773
*.map
6874
*.bin

Board-tester/.cproject

Lines changed: 0 additions & 123 deletions
This file was deleted.

Board-tester/.project

Lines changed: 0 additions & 27 deletions
This file was deleted.

Board-tester/.settings/language.settings.xml

Lines changed: 0 additions & 15 deletions
This file was deleted.

Board-tester/.settings/org.eclipse.cdt.core.prefs

Lines changed: 0 additions & 6 deletions
This file was deleted.

Board-tester/Makefile.GD32

Lines changed: 0 additions & 12 deletions
This file was deleted.

Board-tester/firmware/main.cpp

Lines changed: 0 additions & 99 deletions
This file was deleted.

0 commit comments

Comments
 (0)