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 @@ @@ -0,0 +1,2 @@
  1 +[defaults]
  2 +host_key_checking = false
0 \ No newline at end of file 3 \ No newline at end of file
Ansible/roles/arduino_Setup/tasks/Install.yml
@@ -7,6 +7,14 @@ @@ -7,6 +7,14 @@
7 group: root 7 group: root
8 mode: '0644' 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 - name: "verif install python3" 18 - name: "verif install python3"
11 apt: 19 apt:
12 name: python3 20 name: python3
@@ -28,6 +36,16 @@ @@ -28,6 +36,16 @@
28 name: avrdude 36 name: avrdude
29 state: present 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 - name: "verif install lxml pkg" 49 - name: "verif install lxml pkg"
32 pip: 50 pip:
33 executable: pip3 51 executable: pip3
@@ -42,4 +60,4 @@ @@ -42,4 +60,4 @@
42 pip: 60 pip:
43 executable: pip3 61 executable: pip3
44 name: pyserial 62 name: pyserial
45 -  
46 \ No newline at end of file 63 \ No newline at end of file
  64 +