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