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
/* | |
* gcc `pkg-config --cflags glib-2.0 gio-2.0` -Wall -Wextra -o ./bin/agent ./agent.c `pkg-config --libs glib-2.0 gio-2.0` | |
*/ | |
#include <glib.h> | |
#include <gio/gio.h> | |
#include <stdio.h> | |
#include "agent.h" | |
GMainLoop *loop; | |
GDBusConnection *con; |
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
From 3a1a3515d33facdf8ec9ab9735fb9244c65521be Mon Sep 17 00:00:00 2001 | |
From: Parthiban Nallathambi <[email protected]> | |
Date: Sat, 10 Nov 2018 12:20:41 +0100 | |
Subject: [PATCH] orange pi zero: Add SPI support by default | |
Signed-off-by: Parthiban Nallathambi <[email protected]> | |
--- | |
...rm-dts-enable-SPI-for-orange-pi-zero.patch | 26 +++++++++++++++++++ | |
recipes-kernel/linux/linux-mainline_git.bb | 1 + | |
2 files changed, 27 insertions(+) |
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 ?= " \ | |
##OEROOT##/meta-gstreamer1.0 \ | |
##OEROOT##/meta \ |
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
# We have a conf and classes directory, add to BBPATH | |
BBPATH .= ":${LAYERDIR}" | |
# We have a recipes-* directories, add to BBFILES | |
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ | |
${LAYERDIR}/recipes-*/*/*.bbappend" | |
BBFILE_COLLECTIONS += "babelouest" | |
BBFILE_PATTERN_babelouest = "^${LAYERDIR}/" | |
BBFILE_PRIORITY_babelouest = "6" |
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
git config --global url."https://github.com/".insteadOf [email protected]: | |
git config --global url."https://".insteadOf git:// |
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
DESCRIPTION = "uhubctl - USB hub per-port power control" | |
HOMEPAGE = "https://github.com/mvp/uhubctl" | |
LICENSE = "GPLv2" | |
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | |
file://LICENSE;md5=7a7d8e0fdffe495ff61f52ceee61b2f7" | |
DEPENDS = "libusb1" | |
RDEPENDS_${PN} = "libusb1" | |
SRC_URI = "git://github.com/mvp/uhubctl.git" |
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
DESCRIPTION = "uhubctl - USB hub per-port power control" | |
HOMEPAGE = "https://github.com/mvp/uhubctl" | |
LICENSE = "GPLv2" | |
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | |
file://LICENSE;md5=7a7d8e0fdffe495ff61f52ceee61b2f7" | |
DEPENDS = "libusb1" | |
RDEPENDS_${PN} = "libusb1" | |
SRC_URI = "git://github.com/mvp/uhubctl.git" |
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
/* | |
* bluez_adapter_connect.c - Connect with device without StartDiscovery | |
* - This example registers an agen with NoInputOutput capability for the purpose of | |
* auto pairing | |
* - Use ConnectDevice method to connect with device using provided MAC address | |
* - Usual signal subscription to get the details of the connected device | |
* - Introduced new signal handler to exit the program gracefully | |
* | |
* Note: As "ConnectDevice" is new API and in experimental state (but mostly stable) | |
* one need to use "-E" option when starting "bluetoothd". Systems running systemd can |
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
/* | |
* bluez_adapter_filter.c - Set discovery filter, Scan for bluetooth devices | |
* - Control three discovery filter parameter from command line, | |
* - auto/bredr/le | |
* - RSSI (0:very close range to -100:far away) | |
* - UUID (only one as of now) | |
* Example run: ./bin/bluez_adapter_filter bredr 100 00001105-0000-1000-8000-00805f9b34fb | |
* - This example scans for new devices after powering the adapter, if any devices | |
* appeared in /org/hciX/dev_XX_YY_ZZ_AA_BB_CC, it is monitered using "InterfaceAdded" | |
* signal and all the properties of the device is printed |
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
/* | |
* bluez_adapter_remove.c - Scan and remove bluetooth devices | |
* - This example scans for new devices after powering the adapter, if any devices | |
* appeared in /org/hciX/dev_XX_YY_ZZ_AA_BB_CC, it is monitered using "InterfaceAdded" | |
* signal and all the properties of the device is printed | |
* - Device will be removed immediately after it appears in InterfacesAdded signal, so | |
* InterfacesRemoved will be called which quits the main loop | |
* gcc `pkg-config --cflags glib-2.0 gio-2.0` -Wall -Wextra -o ./bin/bluez_adapter_remove ./bluez_adapter_remove.c `pkg-config --libs glib-2.0 gio-2.0` | |
*/ | |
#include <glib.h> |