Skip to content

Instantly share code, notes, and snippets.

View nyaray's full-sized avatar
💭
Keeping it real, like floats and doubles

Emilio Nyaray nyaray

💭
Keeping it real, like floats and doubles
View GitHub Profile

Adding bluez to Nerves

This might get tricky...

Quote notes

It's a start, basically you need to get to the point where btuart can run, that means the rpi firmware can be loaded and hciconfig and other tools can be run

Patches

From b4f2b77472aeb967d3a7595e8a965785c7a37c87 Mon Sep 17 00:00:00 2001
From: Phil Elwell <phil@raspberrypi.org>
Date: Tue, 16 Feb 2016 16:40:46 +0000
Subject: [PATCH 1/4] bcm43xx: Add bcm43xx-3wire variant
---
tools/hciattach.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tools/hciattach.c b/tools/hciattach.c
@nyaray
nyaray / gist:4215870
Created December 5, 2012 14:25 — forked from mtornwall/gist:4215852
erlang scoping fun (OCD Edition)
test(Derp) ->
case Derp of
true ->
OhYes = yes;
false ->
OhYes = no
end,
io:format("~p~n", [OhYes]).
@nyaray
nyaray / gist:955432
Created May 4, 2011 15:37 — forked from jakearchibald/gist:955241
OCD in action
.whatever {
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.5) inset;
-moz-box-shadow: 0 2px 2px rgba(0,0,0,0.5) inset;
-o-box-shadow: 0 2px 2px rgba(0,0,0,0.5) inset;
box-shadow: 0 2px 2px rgba(0,0,0,0.5) inset;
}