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
Crashlog created at 2015-07-07 00:54:39 -0700 | |
===== MESSAGE: | |
TypeError: no implicit conversion of String into Hash | |
===== COMPILATION STACK: | |
(empty) |
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
Native library 'gz_msgs' | |
------------------------ | |
Source sets | |
C++ source 'gz_msgs:cpp' | |
srcDir: build/generated/cpp | |
includes: build/generated/cpp | |
Binaries | |
Shared library 'gz_msgs:sharedLibrary' |
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
:simulation:gz_msgs:linkGz_msgsSharedLibrary UP-TO-DATE | |
:simulation:gz_msgs:gz_msgsSharedLibrary UP-TO-DATE | |
:simulation:gz_msgs:createGz_msgsStaticLibrary UP-TO-DATE | |
:simulation:gz_msgs:gz_msgsStaticLibrary UP-TO-DATE | |
:simulation:gz_msgs:compileProto UP-TO-DATE | |
:simulation:gz_msgs:compileJava UP-TO-DATE | |
:simulation:gz_msgs:processResources UP-TO-DATE | |
:simulation:gz_msgs:classes UP-TO-DATE | |
:simulation:gz_msgs:jar UP-TO-DATE | |
:simulation:gz_msgs:sourcesJar UP-TO-DATE |
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
apply plugin: 'cpp' | |
def plugins = ['clock', 'dc_motor', 'encoder', 'gyro', 'limit_switch', 'plugins', 'pneumatic_piston', 'potentiometer', 'rangefinder', 'servo'] | |
//iterate over each plugin | |
model { | |
components { | |
plugins.each{ | |
it(NativeLibrarySpec){ | |
sources { |
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
def plugins = ['clock', 'dc_motor', 'encoder', 'gyro', 'limit_switch', 'pneumatic_piston', 'potentiometer', 'rangefinder', 'servo'] | |
//iterate over each plugin | |
model { | |
components { | |
plugins.each { | |
"gz_$it"(NativeLibrarySpec){ | |
sources { | |
cpp { | |
source { |
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
[ 21%] Built target gmock | |
[ 23%] Building CXX object CMakeFiles/ntcore.dir/src/Dispatcher.cpp.obj | |
Dispatcher.cpp | |
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\xstring(684) : warning C4350: behavior change: 'std::_Wrap_alloc<std::allocator<char>>::_Wrap_alloc(const std::_Wrap_alloc<std::allocator<char>> &) throw()' called instead of 'std::_Wrap_alloc<std::allocator<char>>::_Wrap_alloc<std::_Wrap_alloc<std::allocator<char>>>(_Other &) throw()' | |
with | |
[ | |
_Other=std::_Wrap_alloc<std::allocator<char>> | |
] | |
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\xmemory0(809) : see declaration of 'std::_Wrap_alloc<std::allocator<char>>::_Wrap_alloc' | |
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\xmemory0(821) : see declaration of 'std::_Wrap_alloc<std::allocator<char>>::_Wrap_alloc' |
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
// There are two hal libraries that are built | |
// - Desktop hal which is used by simulation (gcc/msvc) | |
// - Athena hal which is used by the roborio (arm) | |
apply plugin: 'cpp' | |
model { | |
platforms { | |
arm { | |
architecture "arm" |
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
#include <LiquidCrystal.h> | |
const int buttonPin = 2; | |
/* volatile means tells compiler not to optimize these | |
* since they might be updated from an ISR | |
*/ | |
volatile int hours, minutes, seconds; | |
LiquidCrystal lcd(12, 11, 6, 5, 4, 3); |
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
Intro to Git (10:20 am) | |
Intro to Intro to Clarifai (10:50 am) | |
Intro to Machine Learning (11:10 am) | |
Intro to Vim (12:00 am) | |
Intro to Payments (12:50 pm) | |
Intro to Node.js (1:00 pm) | |
Intro to Android (1:15 pm) | |
Hackathon Tip 1 (1:25 pm) | |
Intro to HTML/CSS (1:35 pm) | |
Hackathon Tip 2 (2:05 pm) |
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 boolean equals(Object anObject) { | |
if (this == anObject) { | |
return true; | |
} | |
if (anObject instanceof String) { | |
String anotherString = (String)anObject; | |
int n = value.length; | |
if (n == anotherString.value.length) { | |
char v1[] = value; | |
char v2[] = anotherString.value; |
OlderNewer