Skip to content

Commit

Permalink
attempt to install Teensy programming dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
capsulecorplab committed Dec 8, 2023
1 parent f92db28 commit e6b28ee
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@
tags:
- install_cross_compile_toolchain
- install_doxygen
- install_arduino_tools

vars:
cmake_version: "3.27.9"
Expand Down Expand Up @@ -237,6 +238,21 @@
msg: "CMake Version Error: Expected {{ cmake_version }} | Found {{ installed_cmake_version.stdout }}"
when: installed_cmake_version.stdout != cmake_version

-
# Install Teensy programming tools
# See https://github.com/knickish/teensy_docker.git
hosts: localhost
connection: local
tags:
- install_cross_compile_toolchain
- install_arduino_tools

tasks:
- name: Install Teensy build dependencies
apt:
name: avr-libc, binutils-avr, cmake, g++, gcc, gcc-avr, git, libfontconfig1, libusb-dev, libxft-dev, make, unzip, vim, wget, xz-utils
update_cache: yes

-
# install Python packages with pip
hosts: localhost
Expand Down

0 comments on commit e6b28ee

Please sign in to comment.