annotate BootLoader/Src/base_bootlader.c @ 1016:0dd92e9b70a2 BootloaderOstc5

Bootloader use compressed fonts: The previous Bootloader was larger than 128k => not fitting into the first sectors of the second flash bank. Most memory is occupied by the two fonts in use. In order to make the bootloader small enough for the bootloader update function the fonts need to be compressed. To avoid code changes in visualization functions the compressed fonts are decompressed into RAM and then used in the same way as before.
author Ideenmodellierer
date Wed, 28 May 2025 17:20:44 +0200
parents 4ef0511c6665
children 9d9d506a82d3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1 ///////////////////////////////////////////////////////////////////////////////
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
2 /// -*- coding: UTF-8 -*-
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
3 ///
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
4 /// \file BootLoader/Src/base_bootlader.c
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
5 /// \brief he beginning of it all. main() is part of this.
36
7801c5d8a562 Update author name for release
heinrichsweikamp
parents: 30
diff changeset
6 /// \author heinrichs weikamp gmbh
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
7 /// \date 26-February-2014
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
8 ///
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
9 /// $Id$
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
10 ///////////////////////////////////////////////////////////////////////////////
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
11 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
12 ///
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
13 /// This program is free software: you can redistribute it and/or modify
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
14 /// it under the terms of the GNU General Public License as published by
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
15 /// the Free Software Foundation, either version 3 of the License, or
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
16 /// (at your option) any later version.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
17 ///
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
18 /// This program is distributed in the hope that it will be useful,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
19 /// but WITHOUT ANY WARRANTY; without even the implied warranty of
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
20 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
21 /// GNU General Public License for more details.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
22 ///
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
23 /// You should have received a copy of the GNU General Public License
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
24 /// along with this program. If not, see <http://www.gnu.org/licenses/>.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
25 //////////////////////////////////////////////////////////////////////////////
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
26 /**
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
27 * @detail The beginning of it all. main() is part of this.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
28 * + Do the inits for hardware
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
29 * + check for button press or update process reset trigger
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
30 * + Do the inits for sub-systems like menu, dive screen etc.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
31 * + Start IRQs
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
32 * + Start MainTasks not in IRQs
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
33 * @bug
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
34 * @warning
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
35 @verbatim
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
36
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
37 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
38 ##### bootloader specific #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
39 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
40
36
7801c5d8a562 Update author name for release
heinrichsweikamp
parents: 30
diff changeset
41 151130 hw sleep on button3
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
42 (MX_tell_reset_logik_alles_ok() + DataEX_call() in endless loop)
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
43
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
44 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
45 ##### bootloader specific #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
46 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
47
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
48 Bootloader info is set right here in this file.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
49 The location is 0x0800A000 instead of 0x08050000 (firmware)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
50
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
51 on system reset (Menu Start Bootloader in firmware) the update process
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
52 is started automatically if no button is pressed
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
53
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
54 if the right button is pressed the bootloader menu is started
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
55
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
56 after update process (with update or empty) cleaning of EEPROM is started
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
57 afterwards the watchdog reset starts without activating the update process
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
58
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
59 bluetooth chip is started in tComm on start of the mini bootloader firmware
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
60
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
61 SMALLCPU_CSB_PIN must be re-set to 0 to communicate with small CPU / CPU2 / RTE
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
62
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
63 for RealTerm to send file / firmware, Delays has to be increased to 0
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
64
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
65 RTE update / SPI1 with DMA gave IBUSERR, now it is working fine :-) 150828
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
66 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
67 from standard firmware, parts might be invalid here:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
68 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
69 ##### IRQs #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
70 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
71 [..] The IRQs are very important and most functions should only run there.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
72
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
73 PreemptPriority are as follows
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
74 (#) 2 (low) sprintf _only_ here. Don't use in maintask or anywhere else.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
75 Called by Buttons und Timer3
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
76 Timer3 is 1/10 second
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
77 (#) 1 (mid) anything that should work while in IRQ2 like HalDelay(), VSYNC
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
78 and DMA2D Transfer Complete for housekeepingFrame();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
79 (#) 0 (high) _very very short_ interrupts like The HAL hardware part for
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
80 spi, uart, i2c.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
81
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
82 SubPriority within PreemptPriority give the order to execute.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
83 Introduced 30.Oct.14 as it used by several HAL examples.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
84 Three levelAmbients are available (2 low,1 mid,0 high)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
85
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
86 The STM32F4 has 4bits for IRQ levelAmbients, divided 2/2 in this code
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
87 with the NVIC_PRIORITYGROUP_2 setting.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
88
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
89 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
90 ##### MainTask #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
91 ==============================================================================
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
92 [..] For everything slow without importance to be 'in time'.
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
93 Like VPM and Buehlmann.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
94 No sprintf and probably no GFX_SetFramesTopBottom() stuff neither.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
95 If sprintf is called while sprintf is executed it blows up everything.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
96
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
97 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
98 ##### Frames / the external SDRAM #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
99 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
100 [..] The SDRAM is handled by getFrame() and releaseFrame().
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
101 Each frame with 800*480*2 Bytes.
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
102 Be careful to release every frame
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
103 otherwise there will be a memory leakage over time.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
104 housekeepingFrame() in the MainTask takes care of cleaning the frames.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
105 All frames are filled with 0x00. This will be transparent with color of
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
106 CLUT_Font020 (is CLUT 0) if the alpha is set for a 16bit pair.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
107 housekeepingFrame() delays the cleaning of frames still used as screen
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
108 buffer to prevent flickering.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
109
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
110 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
111 ##### Display #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
112 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
113 [..] There is a Top layer, Bottom layer and background color.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
114 All are perfectly alpha-blended by hardware.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
115
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
116 (#) top layer has 800x480 option function calls only
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
117 as it is not used for cursors here
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
118 (#) bottom layer has free size and start option to be used
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
119 for cursors (or sprites in the future ;-)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
120 (#) background only black in the moment.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
121 ToDo: Could be anything else for warnings etc.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
122 if needed
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
123
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
124 [..] Frame updates, switching and cursors is done with
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
125
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
126 (#) GFX_SetFramesTopBottom() and the subset
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
127 GFX_SetFrameTop() + GFX_SetFrameBottom()
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
128 Those do not change anything on the display but give commands to..
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
129 (#) GFX_change_LTDC() The only place that changes the pointer.
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
130 This prevents erratic behavior if several changes
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
131 are made within one refresh rate of the screen.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
132 Is called in IRQ by PD4 and HAL_GPIO_EXTI_IRQHandler
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
133 from VSYNC signal.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
134
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
135 [..] Content
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
136
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
137 (#) Colors by LookupTable only. This could be modified by
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
138 system settings in the future. (gfx_color.h/.c)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
139
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
140 (#) Text by text_multilinguage.h/.c with one char
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
141 necessary only starting from '\x80'
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
142 with automatic language switch by
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
143 selected_language in SSettings
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
144 see openEdit_Language() in tMenuEditSystem.c
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
145 Therefore there are different functions
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
146 for example:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
147 write_label_fix() for single char multilanguage
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
148 write_label_var() for strings that could include
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
149 multilanguage as well
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
150 see GFX_write_string() to get an overview of the controls
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
151 as well as the command list in gfx_engine.h
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
152 There is no clear before writing, text overlay is always on.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
153 Many options to have LargeFont.SmallFont for numbers etc.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
154
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
155 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
156 ##### Update, DualBoot and build-in FLASH memory usage #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
157 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
158 [..] Boot0 pin, Boot1/PB2 pin and BFB2 software bit control the behaviour.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
159 PB2 should be tied to GND.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
160 Boot0 == VDD -> bootloader on start, otherwise boot from Bank1 or Bank2
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
161 depending on BFB2.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
162 Bank2 contains the Fonts and should contain a proper test code in future
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
163 Bank1 is the main code (Bank1 is 1 MB too, usage as of Oct. 14 is 200 KB)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
164 [..] Bootloader should be either UART or USB (on FS pins _only_)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
165 USB HS to FS like on the Eval board does not work.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
166 [..] Bootloader for the smaller CPU2 is implemented via the SPI used for DMA copy.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
167
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
168 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
169 ##### Connection to CPU2 (STM32F411 as of Oct.14 #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
170 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
171 [..] Connected via SPI and DMA for every purpose.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
172 two entire arrays are transfered for data security reasons
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
173 with respect to master (STM32F429) might interrupt internal
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
174 data copy in CPU2 (like hi byte, low byte, etc.).
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
175 [..] The entire life data is calculated in CPU2. Like tissues, CNS,...
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
176 Therefore the main unit is _not_ necessarily a Real Time system.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
177 Simulation on the main unit can be executed without disrupting life data.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
178 [..] SPI is triggered and timed by calling DataEX_call() in data_exchange_main.c
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
179 DataEX_copy_to_LifeData() does the transfer from buffer to variables used.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
180
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
181 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
182 ##### Menu, MenuEdit, Info #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
183 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
184 [..] tMenu.c, tMenuEdit.c and tInfo.c is the system used.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
185 logbook is part of Info not Menu.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
186 The Info Menu is accessed by button 'Back'
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
187 The regular Menu is accessed by button 'Enter'
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
188 [..] Menu content is kept in frame memory for fast access.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
189 There is no need to build pages if the 'Enter' button is pressed.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
190 This is in contrast to MenuEdit pages.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
191 [..] Button control for new pages (and pages in general) have to implemented
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
192 in tMenu.c, tMenuEdit.c or tInfo.c
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
193
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
194 [..] ToDo (Oct. 14) Timeout for menus via Timer3 / IRQ 2
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
195
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
196 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
197 ##### specials #####
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
198 ==============================================================================
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
199 [..] There was code for vector graphics from great demos
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
200 (peridiummmm and jupiter) that can be fitted again
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
201
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
202 @endverbatim
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
203 ******************************************************************************
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
204 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
205
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
206 /* Includes ------------------------------------------------------------------*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
207 #include "base_bootloader.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
208
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
209 // From Bootloader/Inc:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
210 #include "tInfoBootloader.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
211
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
212 // ?
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
213 #include "externLogbookFlash.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
214 #include "firmwareEraseProgram.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
215 #include "firmwareJumpToApplication.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
216
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
217 // From Common/Inc:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
218 #include "FirmwareData.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
219
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
220 // From Common/Drivers:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
221 #include "stm32f4xx_hal.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
222 #include "stm32f4xx_hal_rcc.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
223 #include "stm32f4xx_hal_flash_ex.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
224 #include "stm32f4xx_hal_wwdg.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
225
1016
0dd92e9b70a2 Bootloader use compressed fonts:
Ideenmodellierer
parents: 1015
diff changeset
226 #include "font_T48_min.h"
1003
f1b78bc8de10 Bootloader improve init sequence:
Ideenmodellierer
parents: 992
diff changeset
227 #include "font_T24_min.h"
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
228 #include "Fonts/image_heinrichs_weikamp.h"
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
229
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
230 // From Discovery/Inc (shall be shared...)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
231 #include "data_exchange_main.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
232 #include "display.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
233 #include "gfx_engine.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
234 #include "ostc.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
235 #include "tComm.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
236 #include "tStructure.h"
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
237
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
238 // From AC6 support:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
239 #include <stdio.h>
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
240 #include <string.h> // for memcopy
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
241
1016
0dd92e9b70a2 Bootloader use compressed fonts:
Ideenmodellierer
parents: 1015
diff changeset
242
0dd92e9b70a2 Bootloader use compressed fonts:
Ideenmodellierer
parents: 1015
diff changeset
243 extern void decompressFont(const tFont* pFont, tImageComp** pFontComp);
0dd92e9b70a2 Bootloader use compressed fonts:
Ideenmodellierer
parents: 1015
diff changeset
244
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
245 /* Private define ------------------------------------------------------------*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
246 #define BUFFER_SIZE ((uint32_t)0x00177000)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
247 #define WRITE_READ_ADDR ((uint32_t)0x0000)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
248 #define REFRESH_COUNT ((uint32_t)0x0569) /* SDRAM refresh counter (90Mhz SD clock) */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
249
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
250 /* Private macro -------------------------------------------------------------*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
251 /* Private variables ---------------------------------------------------------*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
252 uint8_t returnFromCommCleanUpRequest = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
253
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
254 const SFirmwareData bootloader_FirmwareData __attribute__(( section(".bootloader_firmware_data") )) =
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
255 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
256 .versionFirst = 1,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
257 .versionSecond = 0,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
258 .versionThird = 1,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
259 .versionBeta = 1,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
260
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
261 /* 4 bytes with trailing 0 */
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
262 .signature = "mh",
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
263
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
264 .release_year = 25,
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
265 .release_month = 1,
963
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
266 .release_day = 13,
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
267 .release_sub = 0,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
268
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
269 /* max 48 with trailing 0 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
270 .release_info ="tComm with all",
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
271
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
272 /* for safety reasons and coming functions*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
273 .magic[0] = FIRMWARE_MAGIC_FIRST,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
274 .magic[1] = FIRMWARE_MAGIC_SECOND,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
275 .magic[2] = FIRMWARE_MAGIC_FIRMWARE, /* the magic byte */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
276 .magic[3] = FIRMWARE_MAGIC_END
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
277 };
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
278
965
58cc980ee848 Set correct section name for HW Data
Ideenmodellierer
parents: 964
diff changeset
279 const SHardwareData HardwareData __attribute__((section(".bootloader_hardware_data"))) =
963
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
280 {
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
281
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
282 // first 52 bytes
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
283 .primarySerial = 0xFFFF,
963
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
284 .primaryLicence = 0x00,
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
285 .revision8bit = 0x02,
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
286 .production_year = 0x19,
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
287 .production_month = 0x01,
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
288 .production_day = 0x10,
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
289 .production_bluetooth_name_set = 0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
290
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
291 .production_info = {
963
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
292 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4F,0x53,0x54,0x43,
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
293 0x20,0x35,0x20,0x65,0x6E,0x64,0x2D,0x32,0x30,0x32,0x34,
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
294 0x20,0x68,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x20,
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
295 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20},
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
296
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
297 /* 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
298 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
299 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
300 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
963
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
301 */
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
302 // other 12 bytes (64 in total)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
303 .secondarySerial = 0xFFFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
304 .secondaryLicence = 0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
305 .secondaryReason8bit = 0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
306 .secondary_year = 0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
307 .secondary_month = 0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
308 .secondary_day = 0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
309 .secondary_bluetooth_name_set = 0xFF,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
310 .secondary_info = {0xFF,0xFF,0xFF,0xFF}
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
311 };
963
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
312
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
313
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
314 RTC_HandleTypeDef RtcHandle;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
315 TIM_HandleTypeDef TimHandle; /* used in stm32f4xx_it.c too */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
316 TIM_HandleTypeDef TimBacklightHandle; /* used in stm32f4xx_it.c too */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
317
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
318 uint32_t time_before;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
319 uint32_t time_between;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
320 uint32_t time_after;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
321
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
322 /* SDRAM handler declaration */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
323 SDRAM_HandleTypeDef hsdram;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
324 FMC_SDRAM_TimingTypeDef SDRAM_Timing;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
325 FMC_SDRAM_CommandTypeDef command;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
326
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
327 FLASH_OBProgramInitTypeDef OBInit;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
328 FLASH_AdvOBProgramInitTypeDef AdvOBInit;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
329
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
330
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
331 /* Private variables with external access ------------------------------------*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
332
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
333 uint32_t globalStateID = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
334 uint8_t globalModeID = SURFMODE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
335 uint32_t time_without_button_pressed_deciseconds = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
336 uint8_t bootToBootloader = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
337
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
338 /* Private function prototypes -----------------------------------------------*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
339
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
340 //static void LCD_ToggleFramebuffer(GFX_DrawCfgTypeDef *hconfig);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
341 //static void LCD_Config(GFX_DrawCfgTypeDef *hconfig);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
342 static void SystemClock_Config(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
343 static void Error_Handler(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
344
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
345 static void SDRAM_Initialization_Sequence(SDRAM_HandleTypeDef *hsdram, FMC_SDRAM_CommandTypeDef *Command);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
346 static void SDRAM_Config(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
347 //static void DualBoot(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
348 static void EXTILine_Buttons_Config(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
349 //static void RTC_init(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
350 static void TIM_init(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
351 static void TIM_BACKLIGHT_init(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
352 //static void TIM_BACKLIGHT_adjust(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
353 static void gotoSleep(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
354 uint8_t checkResetForFirmwareUpdate(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
355 void DeleteResetToFirmwareUpdateRegister(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
356 void reset_to_firmware_using_Watchdog(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
357 void reset_to_update_using_system_reset(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
358
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
359 //static void DualBootToBootloader(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
360
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
361 /* ITM Trace-------- ---------------------------------------------------------*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
362 /*
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
363 #define ITM_Port8(n) (*((volatile unsigned char *)(0xE0000000+4*n)))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
364 #define ITM_Port16(n) (*((volatile unsigned short*)(0xE0000000+4*n)))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
365 #define ITM_Port32(n) (*((volatile unsigned long *)(0xE0000000+4*n)))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
366
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
367 #define DEMCR (*((volatile unsigned long *)(0xE000EDFC)))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
368 #define TRCENA 0x01000000
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
369
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
370 struct __FILE { int handle; };
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
371 FILE __stdout;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
372 FILE __stdin;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
373
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
374 int fputc(int ch, FILE *f) {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
375 if (DEMCR & TRCENA) {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
376 while (ITM_Port32(0) == 0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
377 ITM_Port8(0) = ch;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
378 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
379 return(ch);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
380 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
381 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
382
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
383 /* Private functions ---------------------------------------------------------*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
384
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
385 /**
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
386 * @brief Main program
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
387 * @param None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
388 * @retval None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
389 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
390
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
391 void GPIO_test_I2C_lines(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
392 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
393 GPIO_InitTypeDef GPIO_InitStructure;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
394 __GPIOA_CLK_ENABLE();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
395 __GPIOG_CLK_ENABLE();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
396 GPIO_InitStructure.Pin = GPIO_PIN_7;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
397 GPIO_InitStructure.Mode = GPIO_MODE_OUTPUT_PP;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
398 GPIO_InitStructure.Pull = GPIO_PULLUP;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
399 GPIO_InitStructure.Speed = GPIO_SPEED_LOW;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
400 HAL_GPIO_Init(GPIOG, &GPIO_InitStructure);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
401 GPIO_InitStructure.Pin = GPIO_PIN_3;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
402 HAL_GPIO_Init(GPIOA, &GPIO_InitStructure);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
403
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
404 while(1)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
405 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
406 HAL_GPIO_WritePin(GPIOG,GPIO_PIN_7,GPIO_PIN_SET);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
407 HAL_GPIO_WritePin(GPIOA,GPIO_PIN_3,GPIO_PIN_RESET);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
408 HAL_Delay(10);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
409 HAL_GPIO_WritePin(GPIOG,GPIO_PIN_7,GPIO_PIN_RESET);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
410 HAL_GPIO_WritePin(GPIOA,GPIO_PIN_3,GPIO_PIN_SET);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
411 HAL_Delay(10);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
412 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
413 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
414
991
39b25be11009 Jump to Bootloader:
Ideenmodellierer
parents: 987
diff changeset
415 int __attribute__((optimize("O0"))) main(void)
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
416 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
417
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
418 /*
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
419 HAL_Init();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
420 SystemClock_Config();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
421 GPIO_test_I2C_lines();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
422 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
423 uint32_t pLayerInvisible;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
424 uint32_t firmware_load_result;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
425 uint8_t magicbyte = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
426 uint8_t callForUpdate;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
427 uint8_t status = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
428 char textVersion[32];
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
429 uint8_t ptr;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
430 uint32_t pOffset;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
431
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
432 const SHardwareData* HardwareData = hardwareDataGetPointer();
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
433
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
434 set_globalState(StBoot0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
435
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
436 HAL_Init();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
437 HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_2);
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
438 SystemClock_Config();
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
439
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
440 MX_GPIO_Init();
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
441
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
442 /* button press is only 40 to 50 us low */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
443 MX_GPIO_One_Button_only_Init();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
444
991
39b25be11009 Jump to Bootloader:
Ideenmodellierer
parents: 987
diff changeset
445 uint32_t i = 4000000;
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
446
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
447 callForUpdate = __HAL_RCC_GET_FLAG(RCC_FLAG_SFTRST);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
448
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
449 if(callForUpdate)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
450 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
451 i = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
452 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
453 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
454 if( (firmware_MainCodeIsProgammed() == 0)
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
455 || (HardwareData->primarySerial == 0xFFFF)
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
456 || (HardwareData->production_bluetooth_name_set == 0xFF))
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
457 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
458 i = 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
459 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
460 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
461 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
462 while(MX_GPIO_Read_The_One_Button() && i)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
463 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
464 i--;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
465 __NOP();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
466 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
467 if(i)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
468 {
991
39b25be11009 Jump to Bootloader:
Ideenmodellierer
parents: 987
diff changeset
469 i = 4000000;
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
470 while(!MX_GPIO_Read_The_One_Button() && i)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
471 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
472 i--;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
473 __NOP();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
474 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
475 if(i)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
476 {
991
39b25be11009 Jump to Bootloader:
Ideenmodellierer
parents: 987
diff changeset
477 i = 4000000;
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
478 while(MX_GPIO_Read_The_One_Button() && i)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
479 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
480 i--;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
481 __NOP();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
482 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
483 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
484 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
485 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
486
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
487 if((i == 0) && (callForUpdate == 0))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
488 firmware_JumpTo_Application();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
489
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
490 MX_SPI_Init();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
491 SDRAM_Config();
1016
0dd92e9b70a2 Bootloader use compressed fonts:
Ideenmodellierer
parents: 1015
diff changeset
492
0dd92e9b70a2 Bootloader use compressed fonts:
Ideenmodellierer
parents: 1015
diff changeset
493 decompressFont(&FontT24min, (tImageComp**)&FontT24_Comp);
0dd92e9b70a2 Bootloader use compressed fonts:
Ideenmodellierer
parents: 1015
diff changeset
494 decompressFont(&FontT48min, (tImageComp**)&FontT48_Comp);
0dd92e9b70a2 Bootloader use compressed fonts:
Ideenmodellierer
parents: 1015
diff changeset
495
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
496 HAL_Delay(100);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
497
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
498 GFX_init1_no_DMA(&pLayerInvisible, 2);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
499
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
500 TIM_BACKLIGHT_init();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
501
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
502 // -----------------------------
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
503
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
504 display_power_on__1_of_2__pre_RGB();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
505 GFX_LTDC_Init();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
506 GFX_LTDC_LayerDefaultInit(TOP_LAYER, pLayerInvisible);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
507 GFX_LTDC_LayerDefaultInit(BACKGRD_LAYER, pLayerInvisible);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
508 GFX_SetFramesTopBottom(pLayerInvisible,pLayerInvisible,480);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
509 HAL_Delay(20);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
510 display_power_on__2_of_2__post_RGB();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
511
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
512 // -----------------------------
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
513 GFX_change_LTDC();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
514 GFX_hwBackgroundOn();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
515 GFX_change_LTDC();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
516 // -----------------------------
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
517 tInfoBootloader_init();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
518 // -----------------------------
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
519 if(i == 0)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
520 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
521 tInfo_newpage("load firmware data");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
522 uint8_t* pBuffer = (uint8_t*)((uint32_t)0xD0000000); /* blocked via GFX_init1_no_DMA */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
523 firmware_load_result = ext_flash_read_firmware(pBuffer,768000, &magicbyte);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
524
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
525 if((firmware_load_result > 0) && (firmware_load_result < 768000) && (magicbyte == 0xEE))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
526 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
527 ptr = ext_flash_read_firmware_version(textVersion);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
528 textVersion[ptr++] = 'f';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
529 textVersion[ptr++] = 'o';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
530 textVersion[ptr++] = 'u';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
531 textVersion[ptr++] = 'n';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
532 textVersion[ptr++] = 'd';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
533 textVersion[ptr] = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
534
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
535 tInfo_newpage(textVersion);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
536 tInfo_write("erase flash");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
537 status = firmware_eraseFlashMemory();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
538 if(status != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
539 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
540 tInfo_newpage("error. try again.");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
541 status = firmware_eraseFlashMemory();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
542 if(status != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
543 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
544 tInfo_newpage("error. skip update.");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
545 HAL_Delay(1000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
546 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
547 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
548 if(status == HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
549 {
252
1b9be6040d82 Minor: Typo fixed in bootloader screen
heinrichsweikamp
parents: 36
diff changeset
550 tInfo_write("program flash");
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
551 status = firmware_programFlashMemory(pBuffer,firmware_load_result);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
552 if(status != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
553 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
554 tInfo_newpage("error. try again.");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
555 status = firmware_programFlashMemory(pBuffer,firmware_load_result);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
556 if(status != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
557 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
558 tInfo_newpage("error. skip update.");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
559 HAL_Delay(1000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
560 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
561 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
562 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
563 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
564 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
565
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
566 /* here comes the variable upper firmware loader */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
567 if((i == 0) && (status == HAL_OK))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
568 {
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
569 tInfo_newpage("load fontpack data");
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
570 uint8_t* pBuffer = (uint8_t*)((uint32_t)0xD0000000); /* blocked via GFX_init1_no_DMA */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
571 firmware_load_result = ext_flash_read_firmware2(&pOffset, pBuffer,768000*2,0,0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
572
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
573 if((firmware_load_result > 0) && (firmware_load_result + pOffset <= 1024000))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
574 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
575 ptr = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
576 ptr += gfx_number_to_string(7,0,&textVersion[ptr],firmware_load_result);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
577 textVersion[ptr++] = ' ';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
578 textVersion[ptr++] = 'b';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
579 textVersion[ptr++] = 'y';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
580 textVersion[ptr++] = 't';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
581 textVersion[ptr++] = 'e';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
582 textVersion[ptr++] = 's';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
583 textVersion[ptr++] = ' ';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
584 textVersion[ptr++] = 'w';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
585 textVersion[ptr++] = 'i';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
586 textVersion[ptr++] = 't';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
587 textVersion[ptr++] = 'h';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
588 textVersion[ptr++] = ' ';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
589 ptr += gfx_number_to_string(7,0,&textVersion[ptr],pOffset);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
590 textVersion[ptr++] = ' ';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
591 textVersion[ptr++] = 'o';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
592 textVersion[ptr++] = 'f';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
593 textVersion[ptr++] = 'f';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
594 textVersion[ptr++] = 's';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
595 textVersion[ptr++] = 'e';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
596 textVersion[ptr++] = 't';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
597 textVersion[ptr] = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
598 tInfo_newpage(textVersion);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
599
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
600 ptr = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
601 textVersion[ptr++] = 'f';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
602 textVersion[ptr++] = 'o';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
603 textVersion[ptr++] = 'u';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
604 textVersion[ptr++] = 'n';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
605 textVersion[ptr++] = 'd';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
606 textVersion[ptr] = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
607
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
608 tInfo_write(textVersion);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
609 tInfo_write("erase flash");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
610 status = firmware2_variable_upperpart_eraseFlashMemory(firmware_load_result,pOffset);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
611 if(status != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
612 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
613 tInfo_newpage("error. try again.");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
614 status = firmware2_variable_upperpart_eraseFlashMemory(firmware_load_result,pOffset);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
615 if(status != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
616 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
617 tInfo_newpage("error. skip update.");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
618 HAL_Delay(1000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
619 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
620 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
621 if(status == HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
622 {
252
1b9be6040d82 Minor: Typo fixed in bootloader screen
heinrichsweikamp
parents: 36
diff changeset
623 tInfo_write("program flash");
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
624 status = firmware2_variable_upperpart_programFlashMemory(firmware_load_result,pOffset,pBuffer,firmware_load_result,0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
625 if(status != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
626 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
627 tInfo_newpage("error. try again.");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
628 status = firmware2_variable_upperpart_programFlashMemory(firmware_load_result,pOffset,pBuffer,firmware_load_result,0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
629 if(status != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
630 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
631 tInfo_newpage("error. skip update.");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
632 HAL_Delay(1000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
633 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
634 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
635 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
636 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
637 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
638
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
639 if((i == 0) && (status == HAL_OK))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
640 {
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
641 tInfo_newpage("done.");
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
642 tInfo_write("cleaning.");
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
643 ext_flash_erase_firmware_if_not_empty();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
644 ext_flash_erase_firmware2_if_not_empty();
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
645 tInfo_write("reset device.");
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
646 reset_to_firmware_using_Watchdog();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
647 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
648
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
649 ptr = 0;
880
f012fcd7f465 support for led and vibration
heinrichsweikamp
parents: 872
diff changeset
650 textVersion[ptr++] = '\020';
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
651 textVersion[ptr++] = 's';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
652 textVersion[ptr++] = 'e';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
653 textVersion[ptr++] = 'r';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
654 textVersion[ptr++] = 'i';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
655 textVersion[ptr++] = 'a';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
656 textVersion[ptr++] = 'l';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
657 textVersion[ptr++] = ' ';
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
658 if(HardwareData->primarySerial == 0xFFFF)
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
659 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
660 textVersion[ptr++] = 'n';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
661 textVersion[ptr++] = 'o';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
662 textVersion[ptr++] = 't';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
663 textVersion[ptr++] = ' ';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
664 textVersion[ptr++] = 's';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
665 textVersion[ptr++] = 'e';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
666 textVersion[ptr++] = 't';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
667 }
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
668 else if(HardwareData->secondarySerial == 0xFFFF)
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
669 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
670 textVersion[ptr++] = '#';
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
671 ptr += gfx_number_to_string(5,1,&textVersion[ptr],HardwareData->primarySerial);
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
672 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
673 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
674 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
675 textVersion[ptr++] = '#';
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
676 ptr += gfx_number_to_string(5,1,&textVersion[ptr],HardwareData->secondarySerial);
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
677 textVersion[ptr++] = ' ';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
678 textVersion[ptr++] = '(';
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
679 ptr += gfx_number_to_string(5,1,&textVersion[ptr],HardwareData->primarySerial);
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
680 textVersion[ptr++] = ')';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
681 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
682 textVersion[ptr++] = '\020';
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
683 textVersion[ptr] = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
684
872
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
685 TIM_init();
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
686 MX_UART_Init();
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
687 MX_Bluetooth_PowerOn();
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
688 tComm_init();
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
689
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
690 tInfo_button_text("exit","","sleep");
963
c19c8f17a9f3 hard-coded hardwaredata for testing purposes
heinrichsweikamp
parents: 960
diff changeset
691 tInfo_newpage("bootloader 250113");
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
692 tInfo_write("start bluetooth");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
693 tInfo_write("");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
694 tInfo_write(textVersion);
992
39f28cd9dc46 Bootloader BT module initialization:
Ideenmodellierer
parents: 991
diff changeset
695 #if 0
872
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
696 if(tComm_Set_Bluetooth_Name(0) == 0xFF)
992
39f28cd9dc46 Bootloader BT module initialization:
Ideenmodellierer
parents: 991
diff changeset
697 #else
39f28cd9dc46 Bootloader BT module initialization:
Ideenmodellierer
parents: 991
diff changeset
698 if(hardwareDataGetPointer()->production_bluetooth_name_set == 0xFF)
39f28cd9dc46 Bootloader BT module initialization:
Ideenmodellierer
parents: 991
diff changeset
699 #endif
872
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
700 {
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
701 tInfo_write("init bluetooth");
986
5e7ad81e9ac2 Removed dependencies to OSTC HW version
Ideenmodellierer
parents: 971
diff changeset
702 tComm_StartBlueModBaseInit();
872
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
703 }
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
704 else
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
705 {
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
706 tInfo_write("bluetooth set");
872
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
707 tComm_StartBlueModConfig();
5e027b0f7475 Added first time initialization for new bluetooth module:
Ideenmodellierer
parents: 869
diff changeset
708 }
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
709
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
710 set_globalState_Base();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
711
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
712 GFX_start_VSYNC_IRQ();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
713
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
714 EXTILine_Buttons_Config();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
715 /*
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
716 uint8_t* pBuffer1 = (uint8_t*)getFrame(20);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
717 firmware_load_result = ext_flash_read_firmware(pBuffer1,768000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
718
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
719 if((firmware_load_result > 0) && (firmware_load_result < 768000))
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
720 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
721 firmware_eraseFlashMemory();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
722 firmware_programFlashMemory(pBuffer1,firmware_load_result);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
723 // not for testing
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
724 //ext_flash_erase_firmware_if_not_empty();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
725 reset_to_firmware_using_Watchdog();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
726 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
727 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
728 while(1)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
729 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
730 // if(bootToBootloader)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
731 // DualBootToBootloader();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
732
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
733 if(bootToBootloader)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
734 reset_to_update_using_system_reset();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
735
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
736 tComm_control(); // will stop while loop if tComm Mode started until exit from UART
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
737 };
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
738 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
739
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
740
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
741 void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
742 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
743
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
744 SStateList status;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
745
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
746 get_globalStateList(&status);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
747
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
748 switch(status.base)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
749 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
750 default:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
751 // TIM_BACKLIGHT_adjust();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
752 break;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
753 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
754
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
755 if(returnFromCommCleanUpRequest)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
756 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
757 tComm_exit();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
758 returnFromCommCleanUpRequest = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
759 GFX_hwBackgroundOn();
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
760 tInfo_button_text("exit","","sleep");
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
761 tInfo_newpage("bluetooth disonnected");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
762 tInfo_write("");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
763 tInfo_write("");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
764 tInfo_write("");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
765 tInfo_write("");
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
766 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
767
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
768 get_globalStateList(&status);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
769
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
770 switch(status.base)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
771 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
772 case BaseComm:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
773 if(get_globalState() == StUART_STANDARD)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
774 tComm_refresh();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
775 break;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
776 default:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
777 break;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
778 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
779 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
780
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
781 void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
782 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
783 uint8_t action;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
784 SStateList status;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
785 static uint8_t counterToPreventSleep = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
786 if(GPIO_Pin == VSYNC_IRQ_PIN) // rechts, unten
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
787 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
788 GFX_change_LTDC();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
789 housekeepingFrame();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
790 if(counterToPreventSleep < 250)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
791 counterToPreventSleep++;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
792 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
793 if(counterToPreventSleep != 255)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
794 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
795 counterToPreventSleep = 255;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
796 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
797
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
798 return;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
799 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
800
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
801 time_without_button_pressed_deciseconds = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
802
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
803 if(GFX_logoStatus() != 0)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
804 return;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
805
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
806 if(GPIO_Pin == BUTTON_BACK_PIN) // left
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
807 action = ACTION_BUTTON_BACK;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
808 else
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
809 if(GPIO_Pin == BUTTON_ENTER_PIN) // center
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
810 action = ACTION_BUTTON_ENTER;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
811 else
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
812 if(GPIO_Pin == BUTTON_NEXT_PIN) // right
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
813 action = ACTION_BUTTON_NEXT;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
814 #ifdef BUTTON_CUSTOM_PIN
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
815 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
816 if(GPIO_Pin == BUTTON_CUSTOM_PIN) // extra
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
817 action = ACTION_BUTTON_CUSTOM;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
818 #endif
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
819 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
820 action = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
821 get_globalStateList(&status);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
822
971
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
823 if(status.base == BaseComm)
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
824 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
825 if(action == ACTION_BUTTON_BACK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
826 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
827 reset_to_firmware_using_Watchdog();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
828 }
971
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
829 }
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
830 else
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
831 {
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
832 switch (action)
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
833 {
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
834 case ACTION_BUTTON_NEXT: if((counterToPreventSleep == 255) && (get_globalState() == StS))
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
835 {
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
836 while(1)
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
837 {
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
838 MX_tell_reset_logik_alles_ok();
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
839 DataEX_call();
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
840 HAL_Delay(100);
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
841 }
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
842 }
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
843 break;
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
844 case ACTION_BUTTON_BACK: reset_to_firmware_using_Watchdog();
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
845 break;
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
846 case ACTION_BUTTON_CUSTOM: if(get_globalState() == StS)
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
847 {
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
848 gotoSleep();
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
849 }
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
850 break;
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
851 case ACTION_BUTTON_ENTER: /* reset_to_update_using_system_reset(); old function */
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
852 tComm_StartBlueModBaseInit(); /* new: factory reset bluetooth */
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
853 break;
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
854 default:
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
855 break;
d29e752660c5 Bootloader BT module factory reset:
Ideenmodellierer
parents: 965
diff changeset
856 }
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
857 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
858 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
859
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
860
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
861 void gotoSleep(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
862 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
863 ext_flash_erase_firmware_if_not_empty();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
864 set_globalState(StStop);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
865 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
866
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
867 // -----------------------------
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
868
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
869
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
870 void MainBootLoaderInit(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
871 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
872 void (*SysMemBootJump)(void);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
873 SysMemBootJump=(void (*)(void)) (*((uint32_t *) 0x1fff0004));
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
874
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
875 // DMA, SPI, UART, TIM, ExtIRQ, graphics DMA, LTDC
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
876
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
877 HAL_RCC_DeInit();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
878 SysTick->CTRL = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
879 SysTick->LOAD = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
880 SysTick->VAL = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
881
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
882 __set_PRIMASK(1);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
883
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
884 __set_MSP(0x20002318);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
885 SysMemBootJump();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
886 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
887
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
888 uint32_t get_globalState(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
889 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
890 return globalStateID;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
891 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
892
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
893 void get_globalStateList(SStateList *output)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
894 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
895 output->base = (uint8_t)((globalStateID >> 28) & 0x0F);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
896 output->page = (uint8_t)((globalStateID >> 24) & 0x0F);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
897 output->line = (uint8_t)((globalStateID >> 16) & 0xFF);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
898 output->field = (uint8_t)((globalStateID >> 8) & 0xFF);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
899 output->mode = (uint8_t)((globalStateID ) & 0xFF);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
900 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
901
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
902 void get_idSpecificStateList(uint32_t id, SStateList *output)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
903 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
904 output->base = (uint8_t)((id >> 28) & 0x0F);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
905 output->page = (uint8_t)((id >> 24) & 0x0F);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
906 output->line = (uint8_t)((id >> 16) & 0xFF);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
907 output->field = (uint8_t)((id >> 8) & 0xFF);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
908 output->mode = (uint8_t)((id ) & 0xFF);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
909 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
910
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
911 void set_globalState_Base(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
912 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
913 set_globalState(StS);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
914 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
915
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
916 void set_globalState_Menu_Page(uint8_t page)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
917 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
918 globalStateID = ((BaseMenu << 28) + (page << 24));
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
919 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
920
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
921 void set_globalState_Log_Page(uint8_t pageIsLine)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
922 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
923 globalStateID = StILOGLIST + (pageIsLine << 16);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
924 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
925
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
926
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
927 void set_globalState_Menu_Line(uint8_t line)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
928 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
929 globalStateID = ((globalStateID & MaskLineFieldDigit) + (line << 16));
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
930 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
931
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
932
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
933 void set_globalState(uint32_t newID)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
934 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
935 globalStateID = newID;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
936 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
937
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
938
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
939
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
940 void delayMicros(uint32_t micros)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
941 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
942 micros = micros * (168/4) - 10;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
943 while(micros--);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
944 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
945
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
946
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
947 void get_RTC_DateTime(RTC_DateTypeDef * sdatestructureget, RTC_TimeTypeDef * stimestructureget)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
948 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
949 /* Get the RTC current Time */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
950 if(sdatestructureget)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
951 HAL_RTC_GetTime(&RtcHandle, stimestructureget, FORMAT_BIN);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
952 /* Get the RTC current Date */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
953 if(stimestructureget)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
954 HAL_RTC_GetDate(&RtcHandle, sdatestructureget, FORMAT_BIN);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
955 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
956
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
957
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
958 void set_RTC_DateTime(RTC_DateTypeDef * sdatestructure, RTC_TimeTypeDef * stimestructure)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
959 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
960 if(sdatestructure)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
961 if(HAL_RTC_SetDate(&RtcHandle,sdatestructure,FORMAT_BCD) != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
962 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
963 /* Initialization Error */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
964 Error_Handler();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
965 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
966
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
967 if(stimestructure)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
968 if(HAL_RTC_SetTime(&RtcHandle,stimestructure,FORMAT_BCD) != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
969 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
970 /* Initialization Error */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
971 Error_Handler();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
972 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
973 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
974
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
975 static void TIM_init(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
976 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
977 uint16_t uwPrescalerValue = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
978
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
979 uwPrescalerValue = (uint32_t) ((SystemCoreClock /2) / 10000) - 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
980
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
981 /* Set TIMx instance */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
982 TimHandle.Instance = TIMx;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
983
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
984 /* Initialize TIM3 peripheral as follows:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
985 + Period = 10000 - 1
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
986 + Prescaler = ((SystemCoreClock/2)/10000) - 1
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
987 + ClockDivision = 0
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
988 + Counter direction = Up
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
989 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
990 TimHandle.Init.Period = 1000 - 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
991 TimHandle.Init.Prescaler = uwPrescalerValue;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
992 TimHandle.Init.ClockDivision = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
993 TimHandle.Init.CounterMode = TIM_COUNTERMODE_UP;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
994 if(HAL_TIM_Base_Init(&TimHandle) != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
995 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
996 /* Initialization Error */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
997 Error_Handler();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
998 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
999
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1000 /*##-2- Start the TIM Base generation in interrupt mode ####################*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1001 /* Start Channel1 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1002 if(HAL_TIM_Base_Start_IT(&TimHandle) != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1003 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1004 /* Starting Error */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1005 Error_Handler();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1006 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1007 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1008
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1009 #ifndef TIM_BACKLIGHT
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1010 /*
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1011 static void TIM_BACKLIGHT_adjust(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1012 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1013 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1014 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1015 static void TIM_BACKLIGHT_init(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1016 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1017 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1018 #else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1019 /*
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1020 static void TIM_BACKLIGHT_adjust(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1021 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1022
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1023 TIM_OC_InitTypeDef sConfig;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1024 sConfig.OCMode = TIM_OCMODE_PWM1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1025 sConfig.OCPolarity = TIM_OCPOLARITY_HIGH;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1026 sConfig.OCFastMode = TIM_OCFAST_DISABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1027 sConfig.Pulse = 600;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1028
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1029 HAL_TIM_PWM_ConfigChannel(&TimBacklightHandle, &sConfig, TIM_BACKLIGHT_CHANNEL);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1030 HAL_TIM_PWM_Start(&TimBacklightHandle, TIM_BACKLIGHT_CHANNEL);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1031 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1032 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1033 static void TIM_BACKLIGHT_init(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1034 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1035 uint32_t uwPrescalerValue = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1036 TIM_OC_InitTypeDef sConfig;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1037
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1038 uwPrescalerValue = (uint32_t) ((SystemCoreClock /2) / 18000000) - 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1039
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1040 TimBacklightHandle.Instance = TIM_BACKLIGHT;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1041
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1042 // Initialize TIM3 peripheral as follows: 30 kHz
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1043
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1044 TimBacklightHandle.Init.Period = 600 - 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1045 TimBacklightHandle.Init.Prescaler = uwPrescalerValue;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1046 TimBacklightHandle.Init.ClockDivision = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1047 TimBacklightHandle.Init.CounterMode = TIM_COUNTERMODE_UP;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1048 HAL_TIM_PWM_Init(&TimBacklightHandle);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1049
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1050 sConfig.OCMode = TIM_OCMODE_PWM1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1051 sConfig.OCPolarity = TIM_OCPOLARITY_HIGH;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1052 sConfig.OCFastMode = TIM_OCFAST_DISABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1053 sConfig.Pulse = 50 * 6;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1054
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1055 HAL_TIM_PWM_ConfigChannel(&TimBacklightHandle, &sConfig, TIM_BACKLIGHT_CHANNEL);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1056 HAL_TIM_PWM_Start(&TimBacklightHandle, TIM_BACKLIGHT_CHANNEL);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1057 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1058 #endif
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1059
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1060 /* Configure RTC prescaler and RTC data registers */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1061 /* RTC configured as follow:
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1062 - Hour Format = Format 24
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1063 - Asynch Prediv = Value according to source clock
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1064 - Synch Prediv = Value according to source clock
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1065 - OutPut = Output Disable
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1066 - OutPutPolarity = High Polarity
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1067 - OutPutType = Open Drain */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1068 /*#define RTC_ASYNCH_PREDIV 0x7F LSE as RTC clock */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1069 /*LSE: #define RTC_SYNCH_PREDIV 0x00FF LSE as RTC clock */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1070 /*LSI: #define RTC_SYNCH_PREDIV 0x0130 LSI as RTC clock */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1071 /*
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1072 static void RTC_init(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1073 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1074 RtcHandle.Instance = RTC;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1075
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1076
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1077 RtcHandle.Init.HourFormat = RTC_HOURFORMAT_24;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1078 RtcHandle.Init.AsynchPrediv = 0x7F;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1079 RtcHandle.Init.SynchPrediv = 0x0130;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1080 RtcHandle.Init.OutPut = RTC_OUTPUT_DISABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1081 RtcHandle.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1082 RtcHandle.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1083
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1084 if(HAL_RTC_Init(&RtcHandle) != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1085 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1086 Error_Handler();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1087 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1088 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1089 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1090
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1091 static void EXTILine_Buttons_Config(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1092 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1093 GPIO_InitTypeDef GPIO_InitStructure;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1094
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1095 BUTTON_ENTER_GPIO_ENABLE();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1096 BUTTON_NEXT_GPIO_ENABLE();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1097 BUTTON_BACK_GPIO_ENABLE();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1098
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1099 /* Configure pin as weak PULLUP input */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1100 /* buttons */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1101 GPIO_InitStructure.Mode = GPIO_MODE_IT_RISING;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1102 GPIO_InitStructure.Pull = GPIO_NOPULL;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1103 GPIO_InitStructure.Speed = GPIO_SPEED_LOW;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1104
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1105 GPIO_InitStructure.Pin = BUTTON_ENTER_PIN;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1106 HAL_GPIO_Init(BUTTON_ENTER_GPIO_PORT, &GPIO_InitStructure);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1107
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1108 GPIO_InitStructure.Pin = BUTTON_NEXT_PIN;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1109 HAL_GPIO_Init(BUTTON_NEXT_GPIO_PORT, &GPIO_InitStructure);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1110
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1111 GPIO_InitStructure.Pin = BUTTON_BACK_PIN;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1112 HAL_GPIO_Init(BUTTON_BACK_GPIO_PORT, &GPIO_InitStructure);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1113
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1114 /* Enable and set EXTI Line0 Interrupt to the lowest priority */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1115 HAL_NVIC_SetPriority(BUTTON_ENTER_EXTI_IRQn, 2, 0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1116 HAL_NVIC_SetPriority(BUTTON_NEXT_EXTI_IRQn, 2, 0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1117 HAL_NVIC_SetPriority(BUTTON_BACK_EXTI_IRQn, 2, 0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1118 HAL_NVIC_EnableIRQ(BUTTON_ENTER_EXTI_IRQn);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1119 HAL_NVIC_EnableIRQ(BUTTON_NEXT_EXTI_IRQn);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1120 HAL_NVIC_EnableIRQ(BUTTON_BACK_EXTI_IRQn);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1121
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1122 #ifdef BUTTON_CUSTOM_PIN
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1123 BUTTON_CUSTOM_GPIO_ENABLE();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1124 GPIO_InitStructure.Pin = BUTTON_CUSTOM_PIN;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1125 HAL_GPIO_Init(BUTTON_CUSTOM_GPIO_PORT, &GPIO_InitStructure);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1126 HAL_NVIC_SetPriority(BUTTON_CUSTOM_EXTI_IRQn, 2, 0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1127 HAL_NVIC_EnableIRQ(BUTTON_CUSTOM_EXTI_IRQn);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1128 #endif
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1129 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1130
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1131
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1132 /**
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1133 * @brief System Clock Configuration
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1134 * The system Clock is configured as follow :
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1135 * System Clock source = PLL (HSE)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1136 * SYSCLK(Hz) = 180000000
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1137 * HCLK(Hz) = 180000000
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1138 * AHB Prescaler = 1
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1139 * APB1 Prescaler = 4
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1140 * APB2 Prescaler = 2
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1141 * HSE Frequency(Hz) = 8000000
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1142 * PLL_M = 8
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1143 * PLL_N = 360
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1144 * PLL_P = 2
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1145 * PLL_Q = 7
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1146 * VDD(V) = 3.3
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1147 * Main regulator output voltage = Scale1 mode
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1148 * Flash Latency(WS) = 5
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1149 * The LTDC Clock is configured as follow :
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1150 * PLLSAIN = 192
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1151 * PLLSAIR = 4
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1152 * PLLSAIDivR = 8
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1153 * @param None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1154 * @retval None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1155 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1156 static void SystemClock_Config(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1157 {
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1158 /* Enable Power Control clock */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1159 __PWR_CLK_ENABLE();
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1160
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1161 /* The voltage scaling allows optimizing the power consumption when the device is
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1162 clocked below the maximum system frequency, to update the voltage scaling value
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1163 regarding system frequency refer to product datasheet. */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1164 __HAL_PWR_VOLTAGESCALING_CONFIG( PWR_REGULATOR_VOLTAGE_SCALE1 );
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1165
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1166 /*##-1- System Clock Configuration #########################################*/
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1167 /* Enable HighSpeed Oscillator and activate PLL with HSE/HSI as source */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1168 RCC_OscInitTypeDef RCC_OscInitStruct = { 0 };
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1169 #ifdef DISC1_BOARD
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1170 // Use High Speed Internal (HSI) oscillator, running at 16MHz.
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1171 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1172 RCC_OscInitStruct.HSIState = RCC_HSI_ON;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1173 RCC_OscInitStruct.HSICalibrationValue = 0x10;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1174 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1175 RCC_OscInitStruct.PLL.PLLM = 16; // HSI/16 is 1Mhz.
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1176 #else
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1177 // Use High Speed External oscillator, running at 8MHz
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1178 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1179 RCC_OscInitStruct.HSEState = RCC_HSE_ON;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1180 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1181 RCC_OscInitStruct.PLL.PLLM = 8; // HSE/8 is 1Mhz.
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1182 #endif
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1183 // System clock = PLL (1MHz) * N/p = 180 MHz.
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1184 RCC_OscInitStruct.PLL.PLLN = 360;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1185 RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1186 RCC_OscInitStruct.PLL.PLLQ = 7;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1187 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1188 HAL_RCC_OscConfig( &RCC_OscInitStruct );
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1189
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1190 // HAL_PWREx_ActivateOverDrive();
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1191 HAL_PWREx_DeactivateOverDrive();
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1192
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1193 /* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1194 RCC_ClkInitTypeDef RCC_ClkInitStruct = { 0 };
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1195 RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1196 | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1197 RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1198 RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1199 RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1200 RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1201 HAL_RCC_ClockConfig( &RCC_ClkInitStruct, FLASH_LATENCY_8 ); //FLASH_LATENCY_5);
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1202
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1203 /*##-2- LTDC Clock Configuration ###########################################*/
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1204 /* LCD clock configuration */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1205 /* PLLSAI_VCO Input = HSE_VALUE/PLL_M = 1 Mhz */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1206 /* PLLSAI_VCO Output = PLLSAI_VCO Input * PLLSAIN = 192 Mhz */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1207 /* PLLLCDCLK = PLLSAI_VCO Output/PLLSAIR = 192/4 = 48 Mhz */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1208 /* LTDC clock frequency = PLLLCDCLK / RCC_PLLSAIDIVR_8 = 48/8 = 6 Mhz */
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1209
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1210 /* neu: 8MHz/8*300/5/8 = 7,5 MHz = 19,5 Hz bei 800 x 480 */
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1211 RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1212 PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_LTDC;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1213 PeriphClkInitStruct.PLLSAI.PLLSAIN = 300; //192;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1214 PeriphClkInitStruct.PLLSAI.PLLSAIR = 5; //4;
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1215 PeriphClkInitStruct.PLLSAIDivR = RCC_PLLSAIDIVR_8;//RCC_PLLSAIDIVR_4;// RCC_PLLSAIDIVR_2; // RCC_PLLSAIDIVR_8
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1216 HAL_RCCEx_PeriphCLKConfig( &PeriphClkInitStruct );
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1217 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1218
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1219
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1220 /**
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1221 * @brief This function is executed in case of error occurrence.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1222 * @param None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1223 * @retval None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1224 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1225 static void Error_Handler(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1226 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1227 /* Turn LED3 on */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1228 // BSP_LED_On(LED3);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1229 while(1)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1230 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1231 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1232 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1233
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1234 /**
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
1235 * @brief Perform the SDRAM external memory initialization sequence
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1236 * @param hsdram: SDRAM handle
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1237 * @param Command: Pointer to SDRAM command structure
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1238 * @retval None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1239 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1240 static void SDRAM_Initialization_Sequence(SDRAM_HandleTypeDef *hsdram, FMC_SDRAM_CommandTypeDef *Command)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1241 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1242 __IO uint32_t tmpmrd =0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1243 /* Step 3: Configure a clock configuration enable command */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1244 Command->CommandMode = FMC_SDRAM_CMD_CLK_ENABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1245 Command->CommandTarget = FMC_SDRAM_CMD_TARGET_BANK2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1246 Command->AutoRefreshNumber = 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1247 Command->ModeRegisterDefinition = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1248
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1249 /* Send the command */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1250 HAL_SDRAM_SendCommand(hsdram, Command, 0x1000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1251
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1252 /* Step 4: Insert 100 ms delay */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1253 HAL_Delay(100);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1254
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1255 /* Step 5: Configure a PALL (precharge all) command */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1256 Command->CommandMode = FMC_SDRAM_CMD_PALL;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1257 Command->CommandTarget = FMC_SDRAM_CMD_TARGET_BANK2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1258 Command->AutoRefreshNumber = 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1259 Command->ModeRegisterDefinition = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1260
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1261 /* Send the command */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1262 HAL_SDRAM_SendCommand(hsdram, Command, 0x1000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1263
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1264 /* Step 6 : Configure a Auto-Refresh command */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1265 Command->CommandMode = FMC_SDRAM_CMD_AUTOREFRESH_MODE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1266 Command->CommandTarget = FMC_SDRAM_CMD_TARGET_BANK2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1267 Command->AutoRefreshNumber = 4;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1268 Command->ModeRegisterDefinition = 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1269
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1270 /* Send the command */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1271 HAL_SDRAM_SendCommand(hsdram, Command, 0x1000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1272
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1273 /* Step 7: Program the external memory mode register */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1274 tmpmrd = (uint32_t)SDRAM_MODEREG_BURST_LENGTH_2 |
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1275 SDRAM_MODEREG_BURST_TYPE_SEQUENTIAL |
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1276 SDRAM_MODEREG_CAS_LATENCY_3 |
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1277 SDRAM_MODEREG_OPERATING_MODE_STANDARD |
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1278 SDRAM_MODEREG_WRITEBURST_MODE_SINGLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1279
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1280 Command->CommandMode = FMC_SDRAM_CMD_LOAD_MODE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1281 Command->CommandTarget = FMC_SDRAM_CMD_TARGET_BANK2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1282 Command->AutoRefreshNumber = 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1283 Command->ModeRegisterDefinition = tmpmrd;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1284
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1285 /* Send the command */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1286 HAL_SDRAM_SendCommand(hsdram, Command, 0x1000);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1287
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1288 /* Step 8: Set the refresh rate counter */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1289 /* (15.62 us x Freq) - 20 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1290 /* neu: (8 us x Freq) - 20 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1291 /* Set the device refresh counter */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1292 HAL_SDRAM_ProgramRefreshRate(hsdram, REFRESH_COUNT);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1293 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1294
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1295 /*
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1296 static void DualBoot(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1297 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1298 // Set BFB2 bit to enable boot from Flash Bank2
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
1299 // Allow Access to Flash control registers and user Flash
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1300 HAL_FLASH_Unlock();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1301
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1302 // Allow Access to option bytes sector
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1303 HAL_FLASH_OB_Unlock();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1304
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1305 // Get the Dual boot configuration status
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1306 AdvOBInit.OptionType = OBEX_BOOTCONFIG;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1307 HAL_FLASHEx_AdvOBGetConfig(&AdvOBInit);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1308
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1309 // Enable/Disable dual boot feature
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1310 if (((AdvOBInit.BootConfig) & (FLASH_OPTCR_BFB2)) == FLASH_OPTCR_BFB2)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1311 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1312 AdvOBInit.BootConfig = OB_DUAL_BOOT_DISABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1313 HAL_FLASHEx_AdvOBProgram (&AdvOBInit);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1314 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1315 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1316 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1317 AdvOBInit.BootConfig = OB_DUAL_BOOT_ENABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1318 HAL_FLASHEx_AdvOBProgram (&AdvOBInit);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1319 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1320
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1321 // Start the Option Bytes programming process
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1322 if (HAL_FLASH_OB_Launch() != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1323 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1324 // User can add here some code to deal with this error
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1325 while (1)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1326 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1327 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1328 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1329 // Prevent Access to option bytes sector
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1330 HAL_FLASH_OB_Lock();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1331
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1332 // Disable the Flash option control register access (recommended to protect
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1333 // the option Bytes against possible unwanted operations)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1334 HAL_FLASH_Lock();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1335
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1336 // Initiates a system reset request to reset the MCU
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1337 reset_to_firmware_using_Watchdog();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1338 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1339 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1340 /**
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1341 ******************************************************************************
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1342 ******************************************************************************
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1343 ******************************************************************************
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1344 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1345
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1346
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1347 /**
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1348 * @brief DMA2D configuration.
960
a8c0e6d07b8e Minor: fix some typos in the bootloader code
heinrichsweikamp
parents: 880
diff changeset
1349 * @note This function Configure the DMA2D peripheral :
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1350 * 1) Configure the transfer mode : memory to memory W/ pixel format conversion
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1351 * 2) Configure the output color mode as ARGB4444
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1352 * 3) Configure the output memory address at SRAM memory
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1353 * 4) Configure the data size : 320x120 (pixels)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1354 * 5) Configure the input color mode as ARGB8888
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1355 * 6) Configure the input memory address at FLASH memory
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1356 * @retval
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1357 * None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1358 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1359
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1360 static void SDRAM_Config(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1361 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1362 /*##-1- Configure the SDRAM device #########################################*/
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1363 /* SDRAM device configuration */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1364 hsdram.Instance = FMC_SDRAM_DEVICE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1365
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1366 /* Timing configuration for 90 Mhz of SD clock frequency (180Mhz/2) */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1367 /* TMRD: 2 Clock cycles */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1368 SDRAM_Timing.LoadToActiveDelay = 2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1369 /* TXSR: min=70ns (6x11.90ns) */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1370 SDRAM_Timing.ExitSelfRefreshDelay = 7;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1371 /* TRAS: min=42ns (4x11.90ns) max=120k (ns) */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1372 SDRAM_Timing.SelfRefreshTime = 4;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1373 /* TRC: min=63 (6x11.90ns) */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1374 SDRAM_Timing.RowCycleDelay = 7;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1375 /* TWR: 2 Clock cycles */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1376 SDRAM_Timing.WriteRecoveryTime = 2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1377 /* TRP: 15ns => 2x11.90ns */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1378 SDRAM_Timing.RPDelay = 2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1379 /* TRCD: 15ns => 2x11.90ns */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1380 SDRAM_Timing.RCDDelay = 2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1381
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1382 hsdram.Init.SDBank = FMC_SDRAM_BANK2;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1383 hsdram.Init.ColumnBitsNumber = FMC_SDRAM_COLUMN_BITS_NUM_9;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1384 hsdram.Init.RowBitsNumber = FMC_SDRAM_ROW_BITS_NUM_13;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1385 hsdram.Init.MemoryDataWidth = SDRAM_MEMORY_WIDTH;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1386 hsdram.Init.InternalBankNumber = FMC_SDRAM_INTERN_BANKS_NUM_4;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1387 hsdram.Init.CASLatency = FMC_SDRAM_CAS_LATENCY_3;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1388 hsdram.Init.WriteProtection = FMC_SDRAM_WRITE_PROTECTION_DISABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1389 hsdram.Init.SDClockPeriod = SDCLOCK_PERIOD;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1390 hsdram.Init.ReadBurst = FMC_SDRAM_RBURST_DISABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1391 hsdram.Init.ReadPipeDelay = FMC_SDRAM_RPIPE_DELAY_1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1392
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1393 /* Initialize the SDRAM controller */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1394 if(HAL_SDRAM_Init(&hsdram, &SDRAM_Timing) != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1395 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1396 /* Initialization Error */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1397 Error_Handler();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1398 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1399
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1400 /* Program the SDRAM external device */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1401 SDRAM_Initialization_Sequence(&hsdram, &command);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1402 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1403
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1404
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1405 uint8_t checkResetForFirmwareUpdate(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1406 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1407 uint32_t backupRegisterContent;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1408
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1409 RTC_HandleTypeDef RtcHandle;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1410 RtcHandle.Instance = RTC;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1411 backupRegisterContent = HAL_RTCEx_BKUPRead(&RtcHandle,RTC_BKP_DR0);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1412
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1413 if(backupRegisterContent == 0x12345678)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1414 return 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1415 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1416 return 0;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1417 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1418
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1419 void DeleteResetToFirmwareUpdateRegister(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1420 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1421 RTC_HandleTypeDef RtcHandle;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1422 RtcHandle.Instance = RTC;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1423 __HAL_RTC_WRITEPROTECTION_DISABLE(&RtcHandle);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1424 HAL_RTCEx_BKUPWrite(&RtcHandle,RTC_BKP_DR0,0x00);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1425 __HAL_RTC_WRITEPROTECTION_ENABLE(&RtcHandle);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1426 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1427
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1428 #ifdef USE_FULL_ASSERT
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1429
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1430 /**
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1431 * @brief Reports the name of the source file and the source line number
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1432 * where the assert_param error has occurred.
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1433 * @param file: pointer to the source file name
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1434 * @param line: assert_param error line source number
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1435 * @retval None
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1436 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1437 void assert_failed(uint8_t* file, uint32_t line)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1438 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1439 /* User can add his own implementation to report the file name and line number,
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1440 ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1441
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1442 /* Infinite loop */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1443 while (1)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1444 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1445 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1446 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1447 #endif
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1448
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1449 /*
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1450 static void DualBootToBootloader(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1451 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1452 // Set BFB2 bit to enable boot from Flash Bank2
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1453 // Allow Access to Flash control registers and user Falsh
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1454 HAL_FLASH_Unlock();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1455
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1456 // Allow Access to option bytes sector
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1457 HAL_FLASH_OB_Unlock();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1458
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1459 // Get the Dual boot configuration status
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1460 AdvOBInit.OptionType = OPTIONBYTE_BOOTCONFIG;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1461 HAL_FLASHEx_AdvOBGetConfig(&AdvOBInit);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1462
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1463 // Enable/Disable dual boot feature
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1464 if (((AdvOBInit.BootConfig) & (FLASH_OPTCR_BFB2)) == FLASH_OPTCR_BFB2)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1465 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1466 AdvOBInit.BootConfig = OB_DUAL_BOOT_DISABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1467 HAL_FLASHEx_AdvOBProgram (&AdvOBInit);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1468 if (HAL_FLASH_OB_Launch() != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1469 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1470 while (1)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1471 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1472 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1473 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1474 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1475 else
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1476 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1477
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1478 AdvOBInit.BootConfig = OB_DUAL_BOOT_ENABLE;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1479 HAL_FLASHEx_AdvOBProgram (&AdvOBInit);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1480 if (HAL_FLASH_OB_Launch() != HAL_OK)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1481 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1482 while (1)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1483 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1484 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1485 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1486 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1487
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1488 // Prevent Access to option bytes sector
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1489 HAL_FLASH_OB_Lock();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1490
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1491 / Disable the Flash option control register access (recommended to protect
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1492 // the option Bytes against possible unwanted operations)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1493 HAL_FLASH_Lock();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1494
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1495 // Initiates a system reset request to reset the MCU
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1496 reset_to_firmware_using_Watchdog();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1497 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1498 */
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1499
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1500 void reset_to_update_using_system_reset(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1501 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1502 __HAL_RCC_CLEAR_RESET_FLAGS();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1503 HAL_NVIC_SystemReset();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1504 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1505
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1506 void reset_to_firmware_using_Watchdog(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1507 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1508 __HAL_RCC_CLEAR_RESET_FLAGS();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1509 __HAL_RCC_WWDG_CLK_ENABLE();
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1510
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1511 WWDG_HandleTypeDef WwdgHandle;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1512 WwdgHandle.Instance = WWDG;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1513
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1514 WwdgHandle.Init.Prescaler = WWDG_PRESCALER_8;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1515 WwdgHandle.Init.Window = 80;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1516 WwdgHandle.Init.Counter = 127;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1517
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1518 HAL_WWDG_Init(&WwdgHandle);
869
4e10a3e087a1 Reactivate Bootloader:
Ideenmodellierer
parents: 252
diff changeset
1519 /* HAL_WWDG_Start(&WwdgHandle); has been removed from HAL library starting_V120 */
30
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1520 while(1);
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1521 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1522
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1523
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1524 void set_returnFromComm(void)
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1525 {
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1526 returnFromCommCleanUpRequest = 1;
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1527 }
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1528
ea1003f63e44 ADD GPL License ...
jDG
parents: 25
diff changeset
1529 /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/