This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Comment> | |
Copyright (c) 2018-2020, sigboost, inc., All Rights Reserved. | |
This file is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license. | |
<I/O> | |
input Int : Trigger output | |
output MidiSysEx : Output | |
<Description> | |
Construct MIDI System Exclusive Message. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To build: | |
# docker build --no-cache --build-arg "host_uid=$(id -u)" --build-arg "host_gid=$(id -g)" --tag "yocto:latest" . | |
# GID and UID are needed to obtain access permission to mounted shared directory | |
FROM ubuntu:16.04 | |
ENV DEBIAN_FRONTENV noninteractive | |
# Add the 32-bit arch for compat libraries | |
RUN dpkg --add-architecture i386 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import numpy as np | |
import wave | |
chunk = 1024 | |
fname = 'audio_sample.wav' | |
foname = 'audio_sample_out.wav' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf | |
# changes incompatibly | |
POKY_BBLAYERS_CONF_VERSION = "2" | |
BBPATH = "${TOPDIR}" | |
BBFILES ?= "" | |
BBLAYERS ?= " \ | |
${HOME}/build/poky/meta \ | |
${HOME}/build/poky/meta-poky \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Locale settings to support UTF-8 | |
locale-gen en_US.UTF-8 | |
echo 'export LANG=en_US.UTF-8' >> .bashrc | |
echo 'export LANGUAGE=en_US:en' >> .bashrc | |
echo 'export LC_ALL=en_US.UTF-8' >> .bashrc | |
# Add the 32-bit arch for compat libraries | |
dpkg --add-architecture i386 |