Skip to content

Commit 3d5c39c

Browse files
committed
Fix some typos
1 parent d756a85 commit 3d5c39c

File tree

6 files changed

+5
-51
lines changed

6 files changed

+5
-51
lines changed

.idea/codeStyles/Project.xml

-29
This file was deleted.

.idea/misc.xml

+2-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

-8
This file was deleted.

Src/Application.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Insipred by the ARDUINO environment.
55
*
66
* application_init gets called once at the start of the application, application_run gets called in a cyclic fashion
7-
* like it would be run on an arduion
7+
* like it would be run on an arduino
88
*
99
* Author: Klaus Nagel, klaus[at]nagel-standorf.de
1010
*/

Src/main.c

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ int main(void)
7373

7474
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
7575
HAL_Init();
76-
7776
/* USER CODE BEGIN Init */
7877

7978
/* USER CODE END Init */

nucleo.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
SET(CMAKE_SYSTEM_NAME Generic)
44
SET(CMAKE_SYSTEM_VERSION 1)
55

6-
# Supress Error when trying to test the compiler
6+
# Suppress Error when trying to test the compiler
77
SET(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
88

99
# specify the cross compiler
1010
set (CMAKE_C_COMPILER arm-none-eabi-gcc)
1111
set (CMAKE_CXX_COMPILER arm-none-eabi-g++)
1212

13-
# The settings in this file are based on the Makefile that CubeMX automaticaly generates
13+
# The settings in this file are based on the Makefile that CubeMX automatically generates
1414

1515
#optimization
1616
set (OPT "-Og")

0 commit comments

Comments
 (0)