Mercurial > public > ostc4
annotate Discovery/Inc/t7.h @ 1079:9e1fdb383d86 Icon_Integration
Changed reaction for uart DMA buffer overruns:
In the previous version a DMA was not restarted in case the read pointer is in the chunk which should be filled next. In normal operation this should never happen, in special cases, like debugging, it may occure. In case of an overrun the data may be already outdated and can be discarded. Because of this the new handling of a buffer overflow is to set the read pointer to the start of the chunk => the read function will start with the latest received data. Not yet processed data will be discarded.
| author | Ideenmodellierer |
|---|---|
| date | Sun, 08 Mar 2026 21:04:36 +0100 |
| parents | 4499227a2db8 |
| children |
| rev | line source |
|---|---|
| 38 | 1 /////////////////////////////////////////////////////////////////////////////// |
| 2 /// -*- coding: UTF-8 -*- | |
| 3 /// | |
| 4 /// \file Discovery/Inc/t7.h | |
| 5 /// \brief Header file of Divemode with 7 windows plus plugin | |
| 6 /// \author heinrichs weikamp gmbh | |
| 7 /// \date 23-April-2014 | |
| 8 /// | |
| 9 /// $Id$ | |
| 10 /////////////////////////////////////////////////////////////////////////////// | |
| 11 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh | |
| 12 /// | |
| 13 /// This program is free software: you can redistribute it and/or modify | |
| 14 /// it under the terms of the GNU General Public License as published by | |
| 15 /// the Free Software Foundation, either version 3 of the License, or | |
| 16 /// (at your option) any later version. | |
| 17 /// | |
| 18 /// This program is distributed in the hope that it will be useful, | |
| 19 /// but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 20 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 21 /// GNU General Public License for more details. | |
| 22 /// | |
| 23 /// You should have received a copy of the GNU General Public License | |
| 24 /// along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| 25 ////////////////////////////////////////////////////////////////////////////// | |
| 26 | |
| 27 /* Define to prevent recursive inclusion -------------------------------------*/ | |
| 28 #ifndef T7_H | |
| 29 #define T7_H | |
| 30 | |
| 31 /* Includes ------------------------------------------------------------------*/ | |
|
777
6a8cf91e5b22
This is only showing if one of the compass views is visible. It should make it possible to verify that a correct heading is set as the user can see the compass readout when pushing the button. (mikeller)
heinrichsweikamp
parents:
749
diff
changeset
|
32 #include <stdbool.h> |
|
6a8cf91e5b22
This is only showing if one of the compass views is visible. It should make it possible to verify that a correct heading is set as the user can see the compass readout when pushing the button. (mikeller)
heinrichsweikamp
parents:
749
diff
changeset
|
33 |
| 38 | 34 #include "stm32f4xx_hal.h" |
| 35 #include "gfx_engine.h" | |
|
446
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
36 #include "configuration.h" |
| 38 | 37 |
|
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
38 |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
39 typedef enum |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
40 { |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
41 LLC_Empty = 0, |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
42 LLC_Temperature, |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
43 LLC_AverageDepth, |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
44 LLC_ppO2, |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
45 LLC_Stopwatch, |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
46 LLC_Ceiling, |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
47 LLC_FutureTTS, |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
48 LLC_CNS, |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
49 LLC_GF, |
| 1050 | 50 LCC_GF_SURF, |
| 656 | 51 LLC_ScrubberTime, |
|
1070
4499227a2db8
Added compile option for o2/diluent pressure display:
Ideenmodellierer
parents:
1050
diff
changeset
|
52 #if defined (ENABLE_BOTTLE_SENSOR) || defined (ENABLE_ADVANCED_GAS) |
|
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
53 LCC_BottleBar, |
|
446
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
54 #endif |
| 662 | 55 #ifdef ENABLE_PSCR_MODE |
| 56 LCC_SimPpo2, | |
| 57 #endif | |
| 749 | 58 LLC_Compass, |
| 59 #ifdef ENABLE_CO2_SUPPORT | |
| 60 LCC_CO2, | |
| 61 #endif | |
|
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
62 LLC_END |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
63 |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
64 } customview_llc_t; |
|
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
369
diff
changeset
|
65 |
| 38 | 66 /* Exported functions --------------------------------------------------------*/ |
| 67 void t7_init(void); | |
| 68 | |
| 69 void t7_refresh(void); | |
| 70 void t7_refresh_sleepmode_fun(void); | |
| 71 void t7_refresh_customview_old(void); | |
| 72 | |
| 73 void t7_change_field(void); | |
|
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
577
diff
changeset
|
74 uint8_t t7_change_customview(uint8_t action); |
|
577
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
446
diff
changeset
|
75 void t7_select_customview(uint8_t selectedCustomview); |
| 38 | 76 |
| 77 void t7_set_field_to_primary(void); | |
| 78 void t7_set_customview_to_primary(void); | |
| 79 | |
| 80 void init_t7_compass(void); | |
| 81 | |
|
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
361
diff
changeset
|
82 uint8_t t7_GetEnabled_customviews(); |
|
685
980d7f8d5530
Bugfix automatic switch to o2 sensor custom view:
Ideenmodellierer
parents:
662
diff
changeset
|
83 uint8_t t7_customview_disabled(uint8_t view); |
|
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
361
diff
changeset
|
84 |
|
777
6a8cf91e5b22
This is only showing if one of the compass views is visible. It should make it possible to verify that a correct heading is set as the user can see the compass readout when pushing the button. (mikeller)
heinrichsweikamp
parents:
749
diff
changeset
|
85 bool t7_isCompassShowing(void); |
| 38 | 86 /* |
| 87 void t7c_refresh(uint32_t FramebufferStartAddress); | |
| 88 */ | |
| 89 | |
|
805
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
777
diff
changeset
|
90 void t7_tick(void); |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
777
diff
changeset
|
91 |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
777
diff
changeset
|
92 bool t7_isTimerRunning(bool foregroundOnly); |
| 38 | 93 #endif /* T7_H */ |
