Projet

Général

Profil

Wiki » Historique » Version 13

Patrice Nadeau, 2023-07-08 16:23

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