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