Projet

Général

Profil

SOP 002-Environnement informatique » Historique » Version 136

Patrice Nadeau, 2023-02-25 10:32

1 85 Patrice Nadeau
# SOP 002-Environnement informatique
2 1 Patrice Nadeau
3 122 Patrice Nadeau
Ce SOP explique comment configurer un poste avec le système d’exploitation *openSUSE* pour :
4 1 Patrice Nadeau
* la programmation (C)
5
* le désign de circuits électroniques
6
7
---
8
9
{{toc}}
10
11 85 Patrice Nadeau
## Matériel
12 1 Patrice Nadeau
13 85 Patrice Nadeau
### Ordinateur
14 1 Patrice Nadeau
15
* Processeur
16 95 Patrice Nadeau
    * 64 bits
17 1 Patrice Nadeau
* Mémoire
18 95 Patrice Nadeau
    * 2 Mo
19 1 Patrice Nadeau
* Disque
20
* Port série ou convertisseur USB/série (communication série et programmeur AVR)
21
* Port USB 2.0 ou plus (sonde Logic et programmeur AVR)
22
23 85 Patrice Nadeau
### Écran
24 1 Patrice Nadeau
25
* Résolution minimal de 1690x900 (VIM 2 x 80 colonnes + taglist)
26 131 Patrice Nadeau
27 1 Patrice Nadeau
28 85 Patrice Nadeau
### Programmeur
29 1 Patrice Nadeau
30
Pour le transfert des programmes vers les uC AVR.
31
32
Les programmeur suivants ont été testés :
33 88 Patrice Nadeau
34 1 Patrice Nadeau
* Atmel STK500
35
* Atmel STK600
36
* Atmel AVRISP mkII
37
38 85 Patrice Nadeau
## Logiciels
39 1 Patrice Nadeau
40 85 Patrice Nadeau
### Système d'exploitation
41 1 Patrice Nadeau
42 98 Patrice Nadeau
openSUSE Leap 15 avec interface graphique
43 1 Patrice Nadeau
44 85 Patrice Nadeau
### Navigateur Web
45 1 Patrice Nadeau
46
Pour l’accès à Redmine
47
48 85 Patrice Nadeau
#### Firefox 
49 1 Patrice Nadeau
50
Dictionnaire français
51
52 85 Patrice Nadeau
### Suite bureautique
53 1 Patrice Nadeau
54
LibreOffice
55
56 85 Patrice Nadeau
### Autres
57 1 Patrice Nadeau
58
Document viewer (Evince)
59
60 85 Patrice Nadeau
### Éditeur
61 1 Patrice Nadeau
62 97 Patrice Nadeau
L’éditeur [VIM](http://www.vim.org) est utilisé. 
63 1 Patrice Nadeau
Plusieurs compléments sont installés et une personnalisation est appliquée.
64
65 93 Patrice Nadeau
```bash
66 109 Patrice Nadeau
sudo zypper install gvim vim-data vim-plugin-a vim-plugin-NERDtree vim-plugin-fugitive
67 93 Patrice Nadeau
```
68 1 Patrice Nadeau
69 117 Patrice Nadeau
Plugin de <http://www.vim.org/>
70 1 Patrice Nadeau
71
* tagbar
72
73
Ctags
74
75 93 Patrice Nadeau
```bash
76
sudo zypper install ctags
77
```
78 1 Patrice Nadeau
79
#### Personnalisation
80 98 Patrice Nadeau
81 115 Patrice Nadeau
1. Utilisation de la police de caractère **Hack**
82 98 Patrice Nadeau
83 115 Patrice Nadeau
    ```bash
84
    wget https://github.com/source-foundry/Hack/releases/download/v3.003/Hack-v3.003-ttf.zip
85
    unzip Hack*.zip
86
    sudo cp ttf/* /usr/share/fonts
87
    rm -rf ttf
88
   ```
89 1 Patrice Nadeau
90 115 Patrice Nadeau
1. Copier les gabarits
91
   > TODO : gabarits Vim
92
   ```bash
93
   mkdir ~/Documents/projects
94
   ...
95
   ```
96 1 Patrice Nadeau
97 115 Patrice Nadeau
1. Créer des liens symboliques pour :
98 1 Patrice Nadeau
99 115 Patrice Nadeau
    ```bash
100
    ln -s ~/Documents/projects/vim/vimrc ~/.vimrc
101
    ln -s~/Documents/projects/vim/vim ~/.vim
102
    ln -s~/Documents/projects/linux/ctags ~/.ctags
103
    ```
104 85 Patrice Nadeau
105 115 Patrice Nadeau
1. Créer un raccourci pour l’application
106 1 Patrice Nadeau
107 115 Patrice Nadeau
    ```bash
108
    gvim –cmd:cd /home/repertoire_projets
109
    ```
110 1 Patrice Nadeau
111
### Unison
112 85 Patrice Nadeau
113 1 Patrice Nadeau
Synchronisation de données
114
115 93 Patrice Nadeau
```bash
116
sudo zypper install unison
117
```
118 16 Patrice Nadeau
119 1 Patrice Nadeau
### Minicom
120
121
Logiciel de terminal sous GNU/Linux
122
123
Installation
124
125 93 Patrice Nadeau
```bash
126
sudo zypper install minicom
127
```
128 85 Patrice Nadeau
129 1 Patrice Nadeau
Personnalisation
130
Ajouter l’utilisateur dans le groupe *dialout*.
131
132 93 Patrice Nadeau
```bash
133
sudo usermod --groups dialout username
134
```
135 85 Patrice Nadeau
136 41 Patrice Nadeau
L’usager doit se reloguer.
137 1 Patrice Nadeau
138
### XƎTEX
139 85 Patrice Nadeau
140
Installation
141
142 93 Patrice Nadeau
```bash
143 100 Patrice Nadeau
sudo zypper install texlive-latex texlive-listing texlive-fancyhdr texlive-graphics texlive-todo texlive-siunitx texlive-beamer texlive-context-fullpage texlive-lastpage texlive-polyglossia texlive-lstaddons
144 93 Patrice Nadeau
```
145 1 Patrice Nadeau
146
## Programmation
147 85 Patrice Nadeau
148 1 Patrice Nadeau
Le langage _C_ est celui utilisé pour les systèmes embarqués.
149
150
### Éditeur
151
152
Ajouts supplémentaire à VIM
153
154 111 Patrice Nadeau
* Police **Hack**
155
156 85 Patrice Nadeau
### Compilateur C
157 1 Patrice Nadeau
158 85 Patrice Nadeau
#### gcc
159 17 Patrice Nadeau
160 93 Patrice Nadeau
```bash
161
sudo zypper install gcc make
162
```
163 1 Patrice Nadeau
164
#### splint
165 86 Patrice Nadeau
166 1 Patrice Nadeau
Vérificateur de syntaxe C
167
168 93 Patrice Nadeau
```bash
169
sudo zypper install splint
170
```
171 86 Patrice Nadeau
172
### Doxygen
173 1 Patrice Nadeau
174 136 Patrice Nadeau
Outil de documentation à partir du code source
175 1 Patrice Nadeau
176 136 Patrice Nadeau
* Installation à partir d'openSUSE
177
    > La version 1.8.14 contient un [bogue](https://github.com/doxygen/doxygen/issues/6769)
178
    ```bash
179
    sudo zypper install doxygen texlive-latex texlive-xtab texlive-multirow texlive-sectsty texlive-tocloft texlive-tabu 
180
    ```
181 1 Patrice Nadeau
182 136 Patrice Nadeau
* Installation a partir du « binary » 
183 1 Patrice Nadeau
184 136 Patrice Nadeau
    > Version 1.9.6
185
    ```bash
186
    wget https://www.doxygen.nl/files/doxygen-1.9.6.linux.bin.tar.gz
187
    tar -xf doxygen-1.9.6.linux.bin.tar.gz
188
    cd doxygen-1.9.6
189
    sudo make
190
    sudo make install
191
    sudo zypper install texlive-latex texlive-xtab texlive-multirow texlive-sectsty texlive-tocloft texlive-hanging
192
    ```
193 1 Patrice Nadeau
194
195
### Git
196 92 Patrice Nadeau
197
Système de contrôle de version
198
199 1 Patrice Nadeau
Installation
200 86 Patrice Nadeau
201
```bash
202 1 Patrice Nadeau
sudo zypper install git
203
```
204 86 Patrice Nadeau
205 124 Patrice Nadeau
### Atmel AVR
206 1 Patrice Nadeau
207
Pour la programmation des micro-contrôleur Atmel AVR 8 bits (Microchip).
208 89 Patrice Nadeau
209 112 Patrice Nadeau
#### GNU toolchain
210 123 Patrice Nadeau
211
1. Télécharger du site <https://www.microchip.com/en-us/tools-resources/develop/microchip-studio/gcc-compilers>
212
1. Copier les fichiers décompressés dans `/opt`
213
1. Créer un lien symbolique
214
215
    ````bash
216 106 Patrice Nadeau
    sudo ln --symbolic /opt/avr-toolchain/bin/∗ /usr/bin
217 1 Patrice Nadeau
    ```
218 103 Patrice Nadeau
219 1 Patrice Nadeau
#### Avrdude
220
> Version 6.3
221
222 118 Patrice Nadeau
Logiciel de transfert pour AVR.
223 90 Patrice Nadeau
224 118 Patrice Nadeau
1. Installer les modules suivants :
225
226
    ```bash
227
    sudo zypper install avrdude libusb-compat-devel
228 90 Patrice Nadeau
    ```
229 118 Patrice Nadeau
1. Ajouter l'utilisater au groupe **dialout** (permissions USB/série)
230
231
    > *USER* étant le nom de l'utilisateur
232
    ```bash
233
    sudo usermod --groups dialout USER
234 55 Patrice Nadeau
    ```
235 120 Patrice Nadeau
1. L’usager doit se reloguer.
236 119 Patrice Nadeau
237 56 Patrice Nadeau
### BeagleBone
238 86 Patrice Nadeau
TODO
239 55 Patrice Nadeau
240 1 Patrice Nadeau
## Simulation
241 91 Patrice Nadeau
242
Simulation de circuit électronique.
243
244 86 Patrice Nadeau
### GNUCap
245 130 Patrice Nadeau
246 86 Patrice Nadeau
```bash
247 1 Patrice Nadeau
sudo zypper install gnucap
248 86 Patrice Nadeau
````
249 72 Patrice Nadeau
250 1 Patrice Nadeau
## CAD
251 129 Patrice Nadeau
252
### KiCAD
253
254 113 Patrice Nadeau
Logiciel de conception de circuit électroniques.
255 91 Patrice Nadeau
256
> Version 5.1
257
258 86 Patrice Nadeau
#### Installation
259 1 Patrice Nadeau
260 13 Patrice Nadeau
```bash
261 86 Patrice Nadeau
sudo zypper install kicad
262 87 Patrice Nadeau
```
263
264 104 Patrice Nadeau
#### Personnalisation
265 87 Patrice Nadeau
266
Les fichiers gabarit d'un "nouveau" projet sont :
267
268
* Global (system wide) : **/usr/share/kicad/template/kicad.pro**.
269 1 Patrice Nadeau
* Utilisateur courant : **~/noname.pro**
270 86 Patrice Nadeau
271 1 Patrice Nadeau
Comme les libraires fournis proviennent de source divers et que je ne contrôle pas, je ne travaille qu’avec mes propres libraires, j’enlève donc les librairies de KiCad et j'ajoute les miennes.
272 125 Patrice Nadeau
273 1 Patrice Nadeau
* Fichier **~/noname.pro** (2 lignes à modifier) :
274
* *LibDir* : **~/Documents/projects/cad/libraries/kicad/**
275
276
## Autres
277
278
### Logic
279 128 Patrice Nadeau
280 31 Patrice Nadeau
Analyseur logique
281 126 Patrice Nadeau
> Version 2.4.3
282 127 Patrice Nadeau
283 126 Patrice Nadeau
1. Téléchargement à partir de <http://www.saleae.com/downloads>
284
1. Exécuter le fichier
285 1 Patrice Nadeau
1. Installer la règle `udev` comme affiché a l’écran
286
1. Brancher l'analyseur.