Projet

Général

Profil

Wiki » Historique » Version 139

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