Skip to content

Commit bb10916

Browse files
committed
update c8t6
1 parent 347ebe0 commit bb10916

File tree

82 files changed

+103325
-3
lines changed

Some content is hidden

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

82 files changed

+103325
-3
lines changed

demo/stm32f103c8t6/01-demo-pikascript-stm32f103c8t6-led/MDK-ARM/01-demo-pikascript-stm32f103c8t6-led.uvprojx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@
134134
<RunIndependent>0</RunIndependent>
135135
<UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
136136
<Capability>1</Capability>
137-
<DriverSelection>4101</DriverSelection>
137+
<DriverSelection>4096</DriverSelection>
138138
</Flash1>
139139
<bUseTDR>1</bUseTDR>
140140
<Flash2>BIN\UL2CM3.DLL</Flash2>
141-
<Flash3></Flash3>
141+
<Flash3>"" ()</Flash3>
142142
<Flash4></Flash4>
143143
<pFcarmOut></pFcarmOut>
144144
<pFcarmGrp></pFcarmGrp>
@@ -312,7 +312,7 @@
312312
</ArmAdsMisc>
313313
<Cads>
314314
<interw>1</interw>
315-
<Optim>1</Optim>
315+
<Optim>7</Optim>
316316
<oTime>0</oTime>
317317
<SplitLS>0</SplitLS>
318318
<OneElfS>1</OneElfS>

demo/stm32g030f6p6/Core/Inc/gpio.h

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/**
2+
******************************************************************************
3+
* @file gpio.h
4+
* @brief This file contains all the function prototypes for
5+
* the gpio.c file
6+
******************************************************************************
7+
* @attention
8+
*
9+
* <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
10+
* All rights reserved.</center></h2>
11+
*
12+
* This software component is licensed by ST under BSD 3-Clause license,
13+
* the "License"; You may not use this file except in compliance with the
14+
* License. You may obtain a copy of the License at:
15+
* opensource.org/licenses/BSD-3-Clause
16+
*
17+
******************************************************************************
18+
*/
19+
/* Define to prevent recursive inclusion -------------------------------------*/
20+
#ifndef __GPIO_H__
21+
#define __GPIO_H__
22+
23+
#ifdef __cplusplus
24+
extern "C" {
25+
#endif
26+
27+
/* Includes ------------------------------------------------------------------*/
28+
#include "main.h"
29+
30+
/* USER CODE BEGIN Includes */
31+
32+
/* USER CODE END Includes */
33+
34+
/* USER CODE BEGIN Private defines */
35+
36+
/* USER CODE END Private defines */
37+
38+
void MX_GPIO_Init(void);
39+
40+
/* USER CODE BEGIN Prototypes */
41+
42+
/* USER CODE END Prototypes */
43+
44+
#ifdef __cplusplus
45+
}
46+
#endif
47+
#endif /*__ GPIO_H__ */
48+
49+
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

demo/stm32g030f6p6/Core/Inc/main.h

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/* USER CODE BEGIN Header */
2+
/**
3+
******************************************************************************
4+
* @file : main.h
5+
* @brief : Header for main.c file.
6+
* This file contains the common defines of the application.
7+
******************************************************************************
8+
* @attention
9+
*
10+
* <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
11+
* All rights reserved.</center></h2>
12+
*
13+
* This software component is licensed by ST under BSD 3-Clause license,
14+
* the "License"; You may not use this file except in compliance with the
15+
* License. You may obtain a copy of the License at:
16+
* opensource.org/licenses/BSD-3-Clause
17+
*
18+
******************************************************************************
19+
*/
20+
/* USER CODE END Header */
21+
22+
/* Define to prevent recursive inclusion -------------------------------------*/
23+
#ifndef __MAIN_H
24+
#define __MAIN_H
25+
26+
#ifdef __cplusplus
27+
extern "C" {
28+
#endif
29+
30+
/* Includes ------------------------------------------------------------------*/
31+
#include "stm32g0xx_hal.h"
32+
33+
/* Private includes ----------------------------------------------------------*/
34+
/* USER CODE BEGIN Includes */
35+
36+
/* USER CODE END Includes */
37+
38+
/* Exported types ------------------------------------------------------------*/
39+
/* USER CODE BEGIN ET */
40+
41+
/* USER CODE END ET */
42+
43+
/* Exported constants --------------------------------------------------------*/
44+
/* USER CODE BEGIN EC */
45+
46+
/* USER CODE END EC */
47+
48+
/* Exported macro ------------------------------------------------------------*/
49+
/* USER CODE BEGIN EM */
50+
51+
/* USER CODE END EM */
52+
53+
/* Exported functions prototypes ---------------------------------------------*/
54+
void Error_Handler(void);
55+
56+
/* USER CODE BEGIN EFP */
57+
58+
/* USER CODE END EFP */
59+
60+
/* Private defines -----------------------------------------------------------*/
61+
/* USER CODE BEGIN Private defines */
62+
63+
/* USER CODE END Private defines */
64+
65+
#ifdef __cplusplus
66+
}
67+
#endif
68+
69+
#endif /* __MAIN_H */
70+
71+
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

0 commit comments

Comments
 (0)