Wiki » Historique » Version 138
Patrice Nadeau, 2024-01-01 12:39
1 | 1 | Patrice Nadeau | # Règles de codage C |
---|---|---|---|
2 | |||
3 | 68 | Patrice Nadeau | Le langage C, version [C99] (https://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf) utilisé avec le compilateur [GCC](https://gcc.gnu.org/). |
4 | 1 | Patrice Nadeau | > `gcc` n'est pas entièrement compatible avec le standard C99 (<https://gcc.gnu.org/c99status.html>). |
5 | |||
6 | --- |
||
7 | 73 | Patrice Nadeau | |
8 | {{>toc}} |
||
9 | 1 | Patrice Nadeau | |
10 | ## Style |
||
11 | |||
12 | 6 | Patrice Nadeau | Le code DOIT : |
13 | 5 | Patrice Nadeau | * Être dans le style [K&R](https://fr.wikipedia.org/wiki/Style_d%27indentation#Style_K&R) avec la variante *one true brace style* (1TBS): |
14 | 1 | Patrice Nadeau | * L’indentation est de 4 espaces |
15 | * Le « backslash » est utilisé pour les lignes de plus de 80 caractères |
||
16 | * Une instruction par ligne |
||
17 | * Une espace avant et après un opérateur sauf pour les opérateurs « [unaires](https://fr.wikipedia.org/wiki/Op%C3%A9ration_unaire) » |
||
18 | 52 | Patrice Nadeau | * Les commentaires DOIVENT |
19 | * Être de style C (/* ... */) |
||
20 | 50 | Patrice Nadeau | * En minuscules et commencer par une majuscule |
21 | 52 | Patrice Nadeau | * En français |
22 | 50 | Patrice Nadeau | * Précéder l’élément à documenté |
23 | 1 | Patrice Nadeau | |
24 | 46 | Patrice Nadeau | Justifications : |
25 | 1 | Patrice Nadeau | * [K&R](https://fr.wikipedia.org/wiki/Style_d%27indentation#Style_K&R) |
26 | * Prévient les erreurs lors d'ajout dans les boucles n'ayant qu'une instruction comme bloc |
||
27 | 46 | Patrice Nadeau | * Support ASCII 7-bits |
28 | * Correspondance avec la fiche technique (datasheet) |
||
29 | 1 | Patrice Nadeau | * [Loi sur la langue officielle et commune du Québec, le français](https://www.publicationsduquebec.gouv.qc.ca/fileadmin/Fichiers_client/lois_et_reglements/LoisAnnuelles/fr/2022/2022C14F.PDF) |
30 | |||
31 | Exemple : |
||
32 | ``` c |
||
33 | 47 | Patrice Nadeau | int fonction(void) { |
34 | 1 | Patrice Nadeau | int x; |
35 | if (var != 1) { |
||
36 | x = x + 1; |
||
37 | 14 | Patrice Nadeau | y++; |
38 | 91 | Patrice Nadeau | /* Longue ligne */ |
39 | 1 | Patrice Nadeau | printf("This is a long\ |
40 | line that should be splitted"); |
||
41 | } else { |
||
42 | 16 | Patrice Nadeau | x--; |
43 | }; |
||
44 | 20 | Patrice Nadeau | return 0; |
45 | } |
||
46 | ``` |
||
47 | |||
48 | 93 | Patrice Nadeau | ## Commentaires Doxygen |
49 | 99 | Patrice Nadeau | La documentation est faite a l'aide de commentaires [Doxygen](https://www.doxygen.nl/) dans la déclaration de tous les objets ayant une visibilité publique ainsi que pour les macros. |
50 | 96 | Patrice Nadeau | * Dans le format *Javadoc* (`/** */`) |
51 | * Au minimum, les items suivants doivent être présents : |
||
52 | 94 | Patrice Nadeau | * `@brief` |
53 | 101 | Patrice Nadeau | * Facultatifs |
54 | * `@sa` : *See also* |
||
55 | 135 | Patrice Nadeau | * `@todo` : |
56 | * `@bug` : |
||
57 | 96 | Patrice Nadeau | * Les « décorations » (gras, italique, etc.) sont faites avec la syntaxe *Markdown* |
58 | 103 | Patrice Nadeau | * Italique : `*` ou `_` |
59 | * Gras : `**` ou `__` |
||
60 | 96 | Patrice Nadeau | * La gradations des notes et remarques se fait selon : |
61 | 95 | Patrice Nadeau | * `@remark` : Non importante |
62 | 100 | Patrice Nadeau | * `@note` : Général |
63 | 95 | Patrice Nadeau | * `@attention` : Important |
64 | * `@warning` : Conséquence négative |
||
65 | 90 | Patrice Nadeau | |
66 | Exemple : |
||
67 | ``` c |
||
68 | /** |
||
69 | 97 | Patrice Nadeau | * @brief Compteur global |
70 | 1 | Patrice Nadeau | * @warning Note conséquence négative |
71 | 96 | Patrice Nadeau | */ |
72 | 97 | Patrice Nadeau | int ctr; |
73 | 90 | Patrice Nadeau | ``` |
74 | |||
75 | 1 | Patrice Nadeau | ## Fichiers |
76 | Le nom des fichiers DOIT être composé de la manière suivante : |
||
77 | * En minuscule |
||
78 | 79 | Patrice Nadeau | * Un préfixe de 8 caractères maximum |
79 | * Un des suffixe (extensions) suivants : |
||
80 | * `.h` : entête |
||
81 | * `.c` : sources |
||
82 | * Contient une section Doxygen : |
||
83 | * `@file` |
||
84 | * `@brief` |
||
85 | * `@version` |
||
86 | * `@date` |
||
87 | * `@author` |
||
88 | * `@copyright` |
||
89 | 137 | Patrice Nadeau | * Les fichiers d’entête contiennent en plus |
90 | 1 | Patrice Nadeau | * Une définition macro pour éviter de ré-inclure le fichier. |
91 | 137 | Patrice Nadeau | * Le fichier d’entête du projet contient en plus |
92 | 138 | Patrice Nadeau | * Une section Doxygen « mainpage » |
93 | 104 | Patrice Nadeau | |
94 | 98 | Patrice Nadeau | ### Entêtes |
95 | 104 | Patrice Nadeau | Exemple : |
96 | ```c |
||
97 | #ifndef _test_h |
||
98 | #define _test_h |
||
99 | /** |
||
100 | * @file : test.h |
||
101 | * @brief Description |
||
102 | * @version 0.00.01 |
||
103 | * @date 2023-02-26 |
||
104 | * @author Patrice Nadeau <pnadeau@patricenadeau.com> |
||
105 | * @copyright 2023 Patrice Nadeau |
||
106 | */ |
||
107 | |||
108 | /** |
||
109 | * @mainpage lcd |
||
110 | * @brief ATMEL AVR 8-bit C librairie |
||
111 | * @author Patrice Nadeau <pnadeau@patricenadeau.com> |
||
112 | * @version 0.0.02 |
||
113 | * @date 2023-03-27 |
||
114 | * @pre AVR supportés (testés en gras) : |
||
115 | * - ATmega88 |
||
116 | * - ATmega168 |
||
117 | * - **ATmega328P** |
||
118 | * @copyright |
||
119 | * @include{doc} LICENSE.txt |
||
120 | */ |
||
121 | |||
122 | ... |
||
123 | |||
124 | #endif /*_usart.h*/ |
||
125 | ``` |
||
126 | 98 | Patrice Nadeau | ### Autres |
127 | |||
128 | 1 | Patrice Nadeau | Exemple : |
129 | ```c |
||
130 | #ifndef _test_h |
||
131 | #define _test_h |
||
132 | /** |
||
133 | * @file : test.h |
||
134 | * @brief Description |
||
135 | * @version 0.00.01 |
||
136 | * @date 2023-02-26 |
||
137 | * @author Patrice Nadeau <pnadeau@patricenadeau.com> |
||
138 | * @copyright 2023 Patrice Nadeau |
||
139 | */ |
||
140 | |||
141 | /** |
||
142 | * @mainpage lcd |
||
143 | 37 | Patrice Nadeau | * @brief ATMEL AVR 8-bit C librairie |
144 | 1 | Patrice Nadeau | * @author Patrice Nadeau <pnadeau@patricenadeau.com> |
145 | * @version 0.0.02 |
||
146 | * @date 2023-03-27 |
||
147 | 54 | Patrice Nadeau | * @pre AVR supportés (testés en gras) : |
148 | 1 | Patrice Nadeau | * - ATmega88 |
149 | * - ATmega168 |
||
150 | 15 | Patrice Nadeau | * - **ATmega328P** |
151 | 1 | Patrice Nadeau | * @copyright |
152 | 13 | Patrice Nadeau | * @include{doc} LICENSE.txt |
153 | 1 | Patrice Nadeau | */ |
154 | |||
155 | ... |
||
156 | |||
157 | #endif /*_usart.h*/ |
||
158 | ``` |
||
159 | |||
160 | 85 | Patrice Nadeau | --- |
161 | 82 | Patrice Nadeau | |
162 | 112 | Patrice Nadeau | ## Objets et macros |
163 | 111 | Patrice Nadeau | Variables, fonctions et macros |
164 | 109 | Patrice Nadeau | * Comportent au maximum **31** caractères |
165 | 31 | Patrice Nadeau | * Être séparées par des traits de soulignement si comporte plusieurs mots |
166 | * Exceptions : |
||
167 | * Fonction et variables DOIVENT |
||
168 | * Être en minuscule |
||
169 | * Macros, constantes et `#define` DOIVENT |
||
170 | 1 | Patrice Nadeau | * Être en majuscule |
171 | 109 | Patrice Nadeau | * Les objets ne devant plus être utilisés, DOIVENT générer un message lors de la compilation (`-Wall`) si un appel est effectué. |
172 | * Les attributs`deprecated` ou `unavailable` DOIVENT être ajoutés à la déclaration. |
||
173 | * La documentation DOIT indiquer les substituts à utiliser. |
||
174 | 1 | Patrice Nadeau | |
175 | Justification : |
||
176 | * Linux kernel coding style : <https://www.kernel.org/doc/html/v4.10/process/coding-style.html#naming> |
||
177 | 105 | Patrice Nadeau | * GNU Coding Standards <https://www.gnu.org/prep/standards/html_node/Writing-C.html#Writing-C> |
178 | * Embedded C Coding Standard : <https://barrgroup.com/embedded-systems/books/embedded-c-coding-standard> |
||
179 | |||
180 | Exemple : |
||
181 | ``` c |
||
182 | /** |
||
183 | * @brief OldFunction |
||
184 | * @deprecated Utiliser NewFunction à la place |
||
185 | * @since Version x.x.xx |
||
186 | */ |
||
187 | int OldFunction(void) __attribute__((deprecated)); |
||
188 | |||
189 | /** |
||
190 | * @brief OldFunction |
||
191 | * @deprecated Utiliser NewFunction à la place |
||
192 | * @since Version x.x.xx |
||
193 | */ |
||
194 | int OldFunction(void) __attribute__((unavailable)); |
||
195 | ``` |
||
196 | |||
197 | 108 | Patrice Nadeau | ### Déclarations locales |
198 | |||
199 | Une déclaration n’ayant qu’une visibilité locale DOIT : |
||
200 | * Être de classe `static` |
||
201 | |||
202 | Exemple: |
||
203 | ``` c |
||
204 | /** |
||
205 | * @brief Fonction locale |
||
206 | * @return Une valeur |
||
207 | */ |
||
208 | static int local_func(void) { |
||
209 | ... |
||
210 | return 0; |
||
211 | } |
||
212 | ``` |
||
213 | |||
214 | 62 | Patrice Nadeau | ### Constantes |
215 | 1 | Patrice Nadeau | |
216 | Utilisé au lieu d’une macro quand le type ou la visibilité de la variable doit être définis. |
||
217 | |||
218 | Exemple : |
||
219 | |||
220 | ``` c |
||
221 | /** |
||
222 | 38 | Patrice Nadeau | * @name Liste des constantes |
223 | 1 | Patrice Nadeau | * @brief |
224 | */ |
||
225 | /** @{ */ |
||
226 | 38 | Patrice Nadeau | /** @brief La chaîne d'initialisation du projet */ |
227 | 1 | Patrice Nadeau | static const char INIT_STR[6] = "POWER"; |
228 | 38 | Patrice Nadeau | /** @brief Constante globale de la librairie `random` */ |
229 | 1 | Patrice Nadeau | extern int RANDOM_MAX = 25; |
230 | /** @} */ |
||
231 | |||
232 | 38 | Patrice Nadeau | /** @brief Constante */ |
233 | 1 | Patrice Nadeau | const int ANSWER 42; |
234 | ``` |
||
235 | |||
236 | 63 | Patrice Nadeau | ### Énumérations |
237 | 1 | Patrice Nadeau | |
238 | DOIT être utilisée pour définir une série de valeurs. |
||
239 | |||
240 | Exemple : |
||
241 | ```c |
||
242 | /** |
||
243 | 76 | Patrice Nadeau | * @name Liste des valeurs STATUS |
244 | 1 | Patrice Nadeau | * @brief |
245 | * */ |
||
246 | enum STATUS { |
||
247 | 76 | Patrice Nadeau | /** @brief Le processus est OK */ |
248 | 1 | Patrice Nadeau | STATUS_OK = 0, |
249 | 76 | Patrice Nadeau | /** @brief Le processus est en cours d'initialisation */ |
250 | 1 | Patrice Nadeau | STATUS_INIT, |
251 | 76 | Patrice Nadeau | /** @brief Le processus est arrêté */ |
252 | 1 | Patrice Nadeau | STATUS_HALTED |
253 | }; |
||
254 | ``` |
||
255 | |||
256 | 64 | Patrice Nadeau | ### Typedef |
257 | 1 | Patrice Nadeau | |
258 | Format : |
||
259 | * En minuscule, suivie de **_t** |
||
260 | |||
261 | Exemple : |
||
262 | ``` c |
||
263 | 39 | Patrice Nadeau | /** Type de la structure dans la librairie `ds1305` */ |
264 | 1 | Patrice Nadeau | typedef struct { |
265 | 39 | Patrice Nadeau | /** @brief Dernier deux chiffres : ≥ 00, ≤ 99 */ |
266 | 1 | Patrice Nadeau | uint8_t year; |
267 | /** @brief 01 - 12 */ |
||
268 | uint8_t month; |
||
269 | /** @brief 01 - 31 */ |
||
270 | uint8_t date; |
||
271 | /** @brief 1 - 7 */ |
||
272 | uint8_t day; |
||
273 | /** @brief 00 - 23 */ |
||
274 | uint8_t hours; |
||
275 | /** @brief 00 - 59 */ |
||
276 | uint8_t minutes; |
||
277 | /** @brief 00 - 59 */ |
||
278 | uint8_t seconds; |
||
279 | } ds1305_time_t; |
||
280 | ``` |
||
281 | |||
282 | 65 | Patrice Nadeau | ### Variables |
283 | 1 | Patrice Nadeau | |
284 | Exemple : |
||
285 | ``` c |
||
286 | 40 | Patrice Nadeau | /** @brief Variable locale */ |
287 | 1 | Patrice Nadeau | static int ctr; |
288 | 40 | Patrice Nadeau | /** @brief Variable globale */ |
289 | int RANDOM_CTR; |
||
290 | 1 | Patrice Nadeau | ``` |
291 | |||
292 | 66 | Patrice Nadeau | ### Structures |
293 | 1 | Patrice Nadeau | |
294 | Format |
||
295 | * En minuscule, séparé par des «underscores» si nécessaire. |
||
296 | |||
297 | Exemple : |
||
298 | ``` c |
||
299 | /** |
||
300 | 76 | Patrice Nadeau | * @brief Structure d'un menu local |
301 | 1 | Patrice Nadeau | * @see MenuSelect |
302 | */ |
||
303 | struct menu { |
||
304 | 76 | Patrice Nadeau | /** @brief Caractère utilisé pour l'item */ |
305 | 8 | Patrice Nadeau | char choice; |
306 | 76 | Patrice Nadeau | /** @brief Description de l'item */ |
307 | 8 | Patrice Nadeau | char *item; |
308 | 1 | Patrice Nadeau | }; |
309 | ``` |
||
310 | |||
311 | 67 | Patrice Nadeau | ### Fonctions |
312 | 1 | Patrice Nadeau | |
313 | 128 | Patrice Nadeau | * Le nom DOIT être dans le format suivant : *Action***_***Item***_***Attribut* |
314 | * *Action* signifie : |
||
315 | * **set**, **get**, **clear** : Règle, obtient ou vide un registre |
||
316 | * **read**, **write** : Lis ou écris dans un fichier |
||
317 | * **init** : Fonction d’initialisation |
||
318 | * **is** : Vérifie un état |
||
319 | * **setup** : Fonction de configuration des ports (AVR) |
||
320 | * Exceptions |
||
321 | * Les fonctions définies dans une librairie de bas niveau pour du matériel (« driver ») devraient utiliser le nom définis dans la fiche technique. |
||
322 | 1 | Patrice Nadeau | |
323 | 115 | Patrice Nadeau | * Contient les champs Doxygen |
324 | 122 | Patrice Nadeau | * `@brief` : Brève description de la fonction |
325 | 132 | Patrice Nadeau | * `@param[in,out]` *paramètre* *Description* : Si nécessaire, sinon ne pas inclure le champ |
326 | 133 | Patrice Nadeau | * `@arg` : Valeur prédéfinie d'un paramètre (`#`, `* *`), sinon ne pas inclure le champs |
327 | 1 | Patrice Nadeau | * `@return` : Description de la valeur retournée, sinon le terme **Sans objet** |
328 | 122 | Patrice Nadeau | * `@retval` : Si une valeur de retour est prédéfinie, une ligne pour chaque valeur, sinon ne pas inclure le champs |
329 | 125 | Patrice Nadeau | * `@pre` : Chaque précondition, sur une ligne séparée, sinon le terme **Sans objet** |
330 | * `@post` : Chaque postcondition, sur une ligne séparée, sinon le terme **Sans objet** |
||
331 | 129 | Patrice Nadeau | * `@sa` : Si une référence a un autre objet doit être faite (#), sinon le terme **Sans objet** |
332 | 123 | Patrice Nadeau | * Le bloc d'exemple, si nécessaire |
333 | * `@par Example` |
||
334 | 124 | Patrice Nadeau | * `@code` |
335 | 123 | Patrice Nadeau | * ... |
336 | * `@endcode` |
||
337 | 1 | Patrice Nadeau | |
338 | 28 | Patrice Nadeau | Une fonction DEVRAIT retourner une valeur. |
339 | 1 | Patrice Nadeau | * Type entier (oui/non) : |
340 | * Succès : **0** |
||
341 | * Erreur : **1** |
||
342 | * Type booléen (Librairie `<stdbool.h>`) |
||
343 | * **true** |
||
344 | * **false** |
||
345 | * Pointeur : |
||
346 | * **NULL** : Erreur |
||
347 | * Autre valeur : adresse du pointeur |
||
348 | |||
349 | Justification : |
||
350 | * [AVR1000b](https://ww1.microchip.com/downloads/en/Appnotes/AVR1000b-Getting-Started-Writing-C-Code-for-AVR-DS90003262B.pdf) |
||
351 | |||
352 | Exemple : |
||
353 | |||
354 | ``` c |
||
355 | 42 | Patrice Nadeau | /** |
356 | 120 | Patrice Nadeau | * @brief Vérifie si une horloge est initialisée |
357 | 131 | Patrice Nadeau | * @param[in] nb Le numéro du timer parmi |
358 | * @arg #TIMER_1 |
||
359 | * @arg #TIMER_2 |
||
360 | 1 | Patrice Nadeau | * @return |
361 | 42 | Patrice Nadeau | * @retval true Horloge *nb* est initialisée |
362 | 1 | Patrice Nadeau | * @retval false Horloge *nb* n'est PAS initialisée |
363 | 114 | Patrice Nadeau | * @pre init_timer |
364 | 119 | Patrice Nadeau | * @post Sans objet |
365 | 1 | Patrice Nadeau | **/ |
366 | static bool is_timer_set(uint8_t nb); |
||
367 | ``` |
||
368 | 11 | Patrice Nadeau | |
369 | 1 | Patrice Nadeau | ## Préprocesseur |
370 | Directives du préprocesseur gcc. |
||
371 | |||
372 | ### #include |
||
373 | 43 | Patrice Nadeau | |
374 | 1 | Patrice Nadeau | Pour inclure d’autres fichier comme les fichiers entête. |
375 | |||
376 | ### #ifdef / ifndef |
||
377 | 76 | Patrice Nadeau | |
378 | 1 | Patrice Nadeau | Surtout utilisé pour des options de compilation sur différentes plateforme. |
379 | Utiliser une forme évitant les répétitions. |
||
380 | |||
381 | > N’est pas documenté dans Doxygen. |
||
382 | |||
383 | Exemple : |
||
384 | ```c |
||
385 | const char BLUE = |
||
386 | #if ENABLED(FEATURE_ONE) |
||
387 | '1' |
||
388 | #else |
||
389 | '0' |
||
390 | #endif |
||
391 | ; |
||
392 | ``` |
||
393 | |||
394 | ### Diagnostiques |
||
395 | 78 | Patrice Nadeau | |
396 | 1 | Patrice Nadeau | Les macros `#warning` et `#error` sont utilisées pour afficher des avertissements ou des erreurs lors de la compilation. |
397 | |||
398 | > Ne sont pas documentées dans Doxygen. |
||
399 | |||
400 | Exemple : |
||
401 | ``` c |
||
402 | #ifndef usart_AVR |
||
403 | #error "__FILE_NAME__ is not supported on this AVR !" |
||
404 | #endif |
||
405 | |||
406 | #ifndef __test__ |
||
407 | #warning "test is not defined !" |
||
408 | #endif |
||
409 | ``` |
||
410 | |||
411 | ### Définitions |
||
412 | |||
413 | Un `#define` est utilisé pour remplacer une valeur au moment de la compilation |
||
414 | > Pour la définition d'une valeur « integer », un `enum` DOIT être utilisé. |
||
415 | |||
416 | Exemple : |
||
417 | ``` c |
||
418 | 76 | Patrice Nadeau | /** |
419 | 1 | Patrice Nadeau | * @name Nom des registres |
420 | */ |
||
421 | /** @{ */ |
||
422 | /** @brief USART1 */ |
||
423 | #define USART1 REG1 |
||
424 | /** @brief USART2 */ |
||
425 | #define USART2 REG2 |
||
426 | /** @} */ |
||
427 | |||
428 | USART1 = 0x0F; |
||
429 | ``` |
||
430 | |||
431 | ## Atmel AVR |
||
432 | |||
433 | Particularités pour les microcontrôleurs 8 bits AVR d’Atmel. |
||
434 | |||
435 | [Atmel AVR4027: Tips and Tricks to Optimize Your C Code for 8-bit AVR Microcontrollers](https://ww1.microchip.com/downloads/en/AppNotes/doc8453.pdf) |
||
436 | |||
437 | ### Fichier d’en-têtes |
||
438 | 25 | Patrice Nadeau | |
439 | Vérification du modèle de microcontrôleur |
||
440 | > Via l'option `-m` de [gcc](https://github.com/embecosm/avr-gcc/blob/avr-gcc-mainline/gcc/config/avr/avr-mcus.def) |
||
441 | 1 | Patrice Nadeau | |
442 | 25 | Patrice Nadeau | ```c |
443 | #ifndef defined (__AVR_ATmega48__) || (__AVR_ATmega48P__) || \ |
||
444 | (__AVR_ATmega88P__) || defined (__AVR_ATmega88__) || \ |
||
445 | (__AVR_ATmega168__) || defined (__AVR_ATmega168P__) || \ |
||
446 | (__AVR_ATmega328__) || defined (__AVR_ATmega328P__) |
||
447 | #warning "Cette librairie n'as pas été testée sur cette famille de microcontrôleur." |
||
448 | 1 | Patrice Nadeau | #endif |
449 | ``` |
||
450 | |||
451 | 45 | Patrice Nadeau | ### Macros |
452 | |||
453 | Définis dans le fichier `config.h` |
||
454 | |||
455 | 1 | Patrice Nadeau | Liste : |
456 | * `F_CPU` : La fréquence utilisée par l'horloge (interne ou externe) du microcontrôleur |
||
457 | |||
458 | > Les « fuses » doivent correspondent à la bonne source de l'horloge. |
||
459 | |||
460 | ### Types |
||
461 | |||
462 | De nouveau type d'entier sont fournis avec la librairie `<stdint.h>`. |
||
463 | |||
464 | L'utilisation de ces types DOIT être utilisé afin d'exprimer le nombre de bit d'un objet. |
||
465 | |||
466 | 44 | Patrice Nadeau | ### Progmem |
467 | |||
468 | <https://www.avrfreaks.net/s/topic/a5C3l000000U5SFEA0/t034767> |
||
469 | 1 | Patrice Nadeau | |
470 | Pour mettre des variables en lecture seule dans la section FLASH au lieu de SRAM avec `<avr/pgmspace.h>`. |
||
471 | > L’accès à ces variables est faite via les macros de la librairie. |
||
472 | |||
473 | Le nom de la variable DOIT être suivie de **_P** |
||
474 | |||
475 | Exemple : |
||
476 | ```c |
||
477 | #include <avr/pgmspace.h> |
||
478 | ... |
||
479 | /** @brief Variable en FLASH */ |
||
480 | const int Variable1_P PROGMEM = 42; |
||
481 | ``` |
||
482 | |||
483 | ### Fonction main |
||
484 | Un microcontrôleur AVR ne termine jamais la fonction `main`. |
||
485 | |||
486 | * Déclarer la fonction main avec l’attribut `noreturn` |
||
487 | * La boucle sans fin la plus optimisé est le `for (;;)` |
||
488 | |||
489 | Justification : [AVR035](https://ww1.microchip.com/downloads/en/AppNotes/doc1497.pdf) |
||
490 | |||
491 | Exemple : |
||
492 | 26 | Patrice Nadeau | ```c |
493 | #include <avr/io.h> |
||
494 | 1 | Patrice Nadeau | |
495 | /** |
||
496 | * @brief Never ending loop |
||
497 | 83 | Patrice Nadeau | */ |
498 | 1 | Patrice Nadeau | void main(void) __attribute__((noreturn)); |
499 | |||
500 | 9 | Patrice Nadeau | /* main function definition */ |
501 | 1 | Patrice Nadeau | void main(void) { |
502 | ... |
||
503 | /* never return */ |
||
504 | for (;;) { |
||
505 | }; |
||
506 | }; |
||
507 | ``` |
||
508 | 70 | Patrice Nadeau | |
509 | 113 | Patrice Nadeau | ### Opérations « atomiques » |
510 | 1 | Patrice Nadeau | Opérations ne devant pas être interrompus (Ex. : charger un registre de 16 bits avec un registre de 8 bits). |
511 | |||
512 | La librairie `avr-libc` (util/atomic.h) fournit des macros permettant la gestion entre autre des interruptions. |
||
513 | |||
514 | Les instructions critiques sont insérées dans un `ATOMIC_BLOCK`. |
||
515 | |||
516 | Exemple : |
||
517 | 72 | Patrice Nadeau | ```c |
518 | 1 | Patrice Nadeau | #include <util/atomic.h> |
519 | ... |
||
520 | ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { |
||
521 | ... |
||
522 | } |
||
523 | ... |
||
524 | ``` |