From e405c474f5e0e94288191223de7ae0f31ae0b15f Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Sun, 4 Aug 2019 14:19:25 -0400 Subject: Migrate everything over to separate libraries. * `usb-host` is the crate containing the HAL traits. * `bootkbd` is a crate for a bare-bones boot protocol keyboard driver. * `samd21-host` is a crate with an implementation of `usb-host` for a SAMD21 platform, with an example for the trinket-m0 which uses the `bootkbd` driver to print keyboard reports. --- app/find-serial-port | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 app/find-serial-port (limited to 'app/find-serial-port') diff --git a/app/find-serial-port b/app/find-serial-port deleted file mode 100755 index 62e2c0c..0000000 --- a/app/find-serial-port +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -if [ $# -ne 2 ]; then - echo "Usage: $0 vid pid" >&2 - exit 1 -fi - -prefix=/dev/serial/by-id - -for dev in `ls $prefix`; do - if [ `udevadm info -q property --name $prefix/$dev | egrep -i "ID_VENDOR_ID=($1)|ID_MODEL_ID=($2)" | wc -l` -eq 2 ]; then - echo `readlink -f $prefix/$dev` - exit 0 - fi -done -exit 2 -- cgit v1.3