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