Projet

Général

Profil

Wiki » Historique » Version 80

Patrice Nadeau, 2023-12-31 10:09

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