Projet

Général

Profil

Wiki » Historique » Version 85

Patrice Nadeau, 2023-12-31 10:22

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