Skip to content

Commit 4e0f230

Browse files
committed
separate config file to single config
1 parent 69c2af6 commit 4e0f230

Some content is hidden

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

67 files changed

+420
-3918
lines changed

.gitignore

+12-12
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
*.o
1717
*.sdb
1818
*.obj.dmp
19-
html/
20-
nbproject/private/
21-
nbproject/Package-*.bash
22-
build/
23-
nbbuild/
24-
dist/
25-
nbdist/
26-
nbactions.xml
27-
nb-configuration.xml
28-
funclist
29-
nbproject/Makefile-*
30-
disassembly/
19+
**/html/
20+
**/nbproject/private/
21+
**/nbproject/Package-*.bash
22+
**/build/
23+
**/nbbuild/
24+
**/dist/
25+
**/nbdist/
26+
**/nbactions.xml
27+
**/nb-configuration.xml
28+
**/funclist
29+
**/nbproject/Makefile-*
30+
**/disassembly/
3131
*.map
3232

config/adc-cfg.h

-117
This file was deleted.

config/delay-cfg.h

-40
This file was deleted.

config/i2c-cfg.h

-70
This file was deleted.

config/gpio-cfg.h renamed to config/irq-handler.c

+6-18
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,11 @@
1818
******************************************************************************
1919
\endcond*/
2020

21-
#ifndef GPIO_1ee9c618_fb96_11e9_9dda_0c5b8f279a64
22-
#define GPIO_1ee9c618_fb96_11e9_9dda_0c5b8f279a64
23-
24-
#ifdef __cplusplus
25-
extern "C" {
26-
#endif
27-
2821
/* Includes ------------------------------------------------------------------*/
29-
/* Exported types ------------------------------------------------------------*/
30-
/* Exported constants --------------------------------------------------------*/
31-
/* Exported macro ------------------------------------------------------------*/
32-
/* Exported functions ------------------------------------------------------- */
33-
34-
35-
#ifdef __cplusplus
36-
}
37-
#endif
38-
39-
#endif /* GPIO_1ee9c618_fb96_11e9_9dda_0c5b8f279a64 */
22+
/* Private typedef -----------------------------------------------------------*/
23+
/* Private define ------------------------------------------------------------*/
24+
/* Private macro -------------------------------------------------------------*/
25+
/* Private variables ---------------------------------------------------------*/
26+
/* Private function prototypes -----------------------------------------------*/
27+
/* Private functions ---------------------------------------------------------*/
4028

config/systimer-cfg.h renamed to config/irq-handler.h

+10-4
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,23 @@
1818
******************************************************************************
1919
\endcond*/
2020

21-
#ifndef SYSTIMER_b09c4594_0208_11ea_b4f8_705a0f25cb51
22-
#define SYSTIMER_b09c4594_0208_11ea_b4f8_705a0f25cb51
21+
#ifndef IRQ_HANDLER_9aed5eda_10ec_11ea_b559_705a0f25cb51
22+
#define IRQ_HANDLER_9aed5eda_10ec_11ea_b559_705a0f25cb51
2323

2424
#ifdef __cplusplus
2525
extern "C" {
2626
#endif
2727

28+
/**
29+
* \brief Source file version tag
30+
*
31+
* version info: [15:8] main [7:0] beta
32+
*/
33+
#define __IRQ_HANDLER_VERSION (0x0001u)
34+
2835
/* Includes ------------------------------------------------------------------*/
2936
/* Exported types ------------------------------------------------------------*/
3037
/* Exported constants --------------------------------------------------------*/
31-
#define MICROSECONDS_PER_SYSTIMER_OVERFLOW (2000U)
3238
/* Exported macro ------------------------------------------------------------*/
3339
/* Exported functions ------------------------------------------------------- */
3440

@@ -37,5 +43,5 @@
3743
}
3844
#endif
3945

40-
#endif /* SYSTIMER_b09c4594_0208_11ea_b4f8_705a0f25cb51 */
46+
#endif /* IRQ_HANDLER_9aed5eda_10ec_11ea_b559_705a0f25cb51 */
4147

0 commit comments

Comments
 (0)