Commit 007d273791eed449424a7fd644f1a484d91cc209

Authored by grouille
2 parents 011cb454 657d840a

Merge branch 'master' of https://archives.plil.fr/grouille/IMA3_P10

Ansible/ansible.cfg 0 → 100644
... ... @@ -0,0 +1,2 @@
  1 +[defaults]
  2 +host_key_checking = false
0 3 \ No newline at end of file
... ...
Ansible/roles/arduino_Setup/tasks/Install.yml
... ... @@ -7,6 +7,14 @@
7 7 group: root
8 8 mode: '0644'
9 9  
  10 +- name: "Copy file for GPIO setup"
  11 + copy:
  12 + src: ../../../../codes/avrdude_gpio.conf
  13 + dest: ~/avrdude_gpio.conf
  14 + owner: root
  15 + group: root
  16 + mode: '0644'
  17 +
10 18 - name: "verif install python3"
11 19 apt:
12 20 name: python3
... ... @@ -28,6 +36,16 @@
28 36 name: avrdude
29 37 state: present
30 38  
  39 +- name: "verif install gcc-avr"
  40 + apt:
  41 + name: gcc-avr
  42 + state: present
  43 +
  44 +- name: "verif install avr-libc"
  45 + apt:
  46 + name: avr-libc
  47 + state: present
  48 +
31 49 - name: "verif install lxml pkg"
32 50 pip:
33 51 executable: pip3
... ... @@ -42,4 +60,4 @@
42 60 pip:
43 61 executable: pip3
44 62 name: pyserial
45   -
46 63 \ No newline at end of file
  64 +
... ...