Projet

Général

Profil

Wiki » Historique » Version 73

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