Projet

Général

Profil

Wiki » Historique » Version 89

Patrice Nadeau, 2023-12-31 10:50

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