Skip to content

Commit

Permalink
x86 serial newline fix, pairing now succeeds.
Browse files Browse the repository at this point in the history
  • Loading branch information
theojulienne committed Feb 9, 2015
1 parent a49dcac commit f6f7dff
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ snap: staging
snappy build staging-snappy

remote: snap
snappy-remote --url=ssh://10.0.1.14 install ./ninjasphere_0.0.7_multi.snap
snappy-remote --url=ssh://10.0.1.14 install ./ninjasphere_0.0.8_multi.snap
2 changes: 1 addition & 1 deletion template/bin/sphere-serial
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ if [[ -f /sys/bus/i2c/devices/i2c-0/new_device ]]; then # BeagleBone, not a grea
fi

# fall back on using the default route's interface's MAC address
echo -n DEVBOX; cat /sys/class/net/$(ip route get "8.8.8.8" | grep -Po '(?<=(dev )).*(?= src)' | tr -d '\n\t ')/address | tr -d ':'
echo -n DEVBOX; cat /sys/class/net/$(ip route get "8.8.8.8" | grep -Po '(?<=(dev )).*(?= src)' | tr -d '\n\t ')/address | tr -d ':' | tr '[a-z]' '[A-Z]' | tr -d '\n'

6 changes: 3 additions & 3 deletions template/meta/mqtt-bridgeify.profile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

# Specified profile variables
@{APP_APPNAME}="mqtt-bridgeify"
@{APP_ID_DBUS}="ninjasphere_5fmqtt_2dbridgeify_5f0_2e0_2e7"
@{APP_ID_DBUS}="ninjasphere_5fmqtt_2dbridgeify_5f0_2e0_2e8"
@{APP_PKGNAME_DBUS}="ninjasphere"
@{APP_PKGNAME}="ninjasphere"
@{APP_VERSION}="0.0.7"
@{APP_VERSION}="0.0.8"
@{CLICK_DIR}="{/apps,/custom/click,/oem,/usr/share/click/preinstalled}"

profile "ninjasphere_mqtt-bridgeify_0.0.7" {
profile "ninjasphere_mqtt-bridgeify_0.0.8" {
#include <abstractions/base>
#include <abstractions/consoles>
#include <abstractions/openssl>
Expand Down
2 changes: 1 addition & 1 deletion template/meta/package.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ninjasphere
vendor: Theo Julienne <[email protected]>
architecture: [amd64, armhf]
version: 0.0.7
version: 0.0.8
icon: meta/nina.svg
services:
- name: mosquitto
Expand Down
6 changes: 3 additions & 3 deletions template/meta/sphere-client.profile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

# Specified profile variables
@{APP_APPNAME}="sphere-client"
@{APP_ID_DBUS}="ninjasphere_5fsphere_2dclient_5f0_2e0_2e7"
@{APP_ID_DBUS}="ninjasphere_5fsphere_2dclient_5f0_2e0_2e8"
@{APP_PKGNAME_DBUS}="ninjasphere"
@{APP_PKGNAME}="ninjasphere"
@{APP_VERSION}="0.0.7"
@{APP_VERSION}="0.0.8"
@{CLICK_DIR}="{/apps,/custom/click,/oem,/usr/share/click/preinstalled}"

profile "ninjasphere_sphere-client_0.0.7" {
profile "ninjasphere_sphere-client_0.0.8" {
#include <abstractions/base>
#include <abstractions/consoles>
#include <abstractions/openssl>
Expand Down

0 comments on commit f6f7dff

Please sign in to comment.