This file contains 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
D/bluetooth: OSTC+ 100:80:25:34:CE:A5 | |
W/BluetoothAdapter: getBluetoothService() called with no BluetoothManagerCallback | |
D/plugin: library loaded | |
D/test: serial set timeout 3000 | |
serial sleep 300 | |
serial purge | |
Device open success OSTC Sport 49 19 393218 | |
ostc3 device open | |
event success | |
cancel success |
This file contains 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
public class MainActivity extends Activity | |
{ | |
static { | |
System.loadLibrary("subsurface-bridge"); | |
} | |
public native String libsubsurfaceExtract(long bluetoothsocket); | |
private BluetoothAdapter bluetoothAdapter = null; | |
BluetoothSocket socket = null; |
This file contains 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
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__) | |
int import_thread_cancelled = 0; | |
typedef struct dc_user_device_t | |
{ | |
dc_descriptor_t *descriptor; | |
const char *vendor, *product, *devname; | |
const char *model, *btname; | |
unsigned char *fingerprint; |
This file contains 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
cd /usr/share/nginx/html | |
rm -r * | |
apt-get update && apt-get -y install wget nano git-core curl build-essential openssl libssl-dev python p7zip unzip | |
wget https://buildbot.libretro.com/nightly/emscripten/$(date +%Y-%m-%d -d "1 day ago")_RetroArch.7z | |
p7zip -d $(date +%Y-%m-%d -d "1 day ago")_RetroArch.7z | |
mkdir -p assets/frontend/bundle | |
mkdir -p assets/cores | |
chmod +x indexer |