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
/************************************* Types **************************************/ | |
export interface RouteType<ParamsType, NestedRoutesType> { | |
path: string; | |
build(params: ParamsType): string; | |
nestedRoutes: NestedRoutesType; | |
} | |
class Route<NestedRoutesType, ParamsType = void> | |
implements RouteType<ParamsType, NestedRoutesType> { |
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
camera_50810620_1 | Setting serial 50810620 | |
camera_50810620_1 | 42646 <DEBUG> Logger:107: | |
camera_50810620_1 | The following library versions are used: | |
camera_50810620_1 | Tcam: 0.10.0_HEAD/2fdabb2_rev_2227 | |
camera_50810620_1 | Aravis: 0.6_version_5a2f97a | |
camera_50810617_1 | 42465 <DEBUG> Logger:107: | |
camera_50810617_1 | The following library versions are used: | |
camera_50810617_1 | Tcam: 0.10.0_HEAD/2fdabb2_rev_2227 | |
camera_50810617_1 | Aravis: 0.6_version_5a2f97a | |
camera_50810617_1 | 42671 <DEBUG> Logger:107: |
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
#!/usr/bin/env bash | |
current=$PWD | |
cd /tmp/ | |
uuid=$(uuidgen) | |
mkdir $uuid | |
cd $uuid | |
git clone -b project-template [email protected]:xmartlabs/Swift-Base-Project.git | |
script="/tmp/$uuid/Swift-Base-Project/ProjectTemplate/shell.swift" | |
cd $current | |
swift -target x86_64-apple-macosx10.11 $script |
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
#include "Arduino.h" | |
// Include API-Headers | |
extern "C" { | |
#include "ets_sys.h" | |
#include "os_type.h" | |
#include "osapi.h" | |
#include "mem.h" | |
#include "user_interface.h" | |
#include "cont.h" |