Skip to content

Instantly share code, notes, and snippets.

View Hardolaf's full-sized avatar

Joseph Warner Hardolaf

  • Chicago, Illinois
View GitHub Profile
; MSP430 Assembler Code Template for use with TI Code Composer Studio
;
;
;-------------------------------------------------------------------------------
.cdecls C,LIST,"msp430.h" ; Include device header file
;-------------------------------------------------------------------------------
.text ; Assemble into program memory
.retain ; Override ELF conditional linking
; and retain current section
@Hardolaf
Hardolaf / Arduino Yun 40 to 50 Channel Data Acquisition System
Last active August 29, 2015 13:58
This is for the OSU ATLAS Group, just a proof of concept so far. Very far from feature complete.
/*
40 to 50 channel data acquisition
TODO: Detection of optional channels 41 to 50
TODO: Collect only when data is incoming
created 09 April 2014
by Joseph Warner
*/
@Hardolaf
Hardolaf / controler_code.ino
Last active August 29, 2015 13:58
Arduino Yun 40 to 50 channel data acquisition system
/*
40 to 50 channel data acquisition
TODO: Detection of optional channels 41 to 50
TODO: Collect only when data is incoming
created 09 April 2014
by Joseph Warner
*/

Keybase proof

I hereby claim:

  • I am hardolaf on github.
  • I am hardolaf (https://keybase.io/hardolaf) on keybase.
  • I have a public key whose fingerprint is A6CD A6B7 983E 9422 2C86 048A D546 9F84 2613 0FCE

To claim this, I am signing this object:

network={
ssid="osuwireless"
scan_ssid=1
key_mgmt=WPA-EAP
eap=PEAP
ca_cert="/etc/ssl/certs/AddTrust_External_Root.pem"
phase1="peaplabel=0"
phase2="auth=MSCHAPV2"
identity="hardolaf"
password="hunter2"
void setup() {
pinMode(A0, INPUT);
pinMode(A2, OUTPUT);
}
void loop() {
if (DDRF & _BV(7)) {
PORTF |= _BV(5);
} else {
PORTF &= ~_BV(5);
void setup() {
DDRF = DDRF | _BV(5);
}
void loop() {
if (!(PINF & _BV(7))) {
PORTF |= _BV(5);
} else {
PORTF &= ~_BV(5);
}
PHPUnit 3.6.12 by Sebastian Bergmann.
Configuration read from /phpbb3/phpunit.xml.dist
EES
Time: 2 seconds, Memory: 49.50Mb
There were 2 errors:
phpbb_mock_user Object
(
[host] => testhost
[page] => Array
(
[root_script_path] => /
)
[options:phpbb_mock_user:private] => Array
(
1) phpbb_auth_provider_native_test::test_registration
PHPUnit_Extensions_Database_Operation_Exception: COMPOSITE[TRUNCATE] operation failed on query:
TRUNCATE `phpbb_user`
using args: Array
(
)
[SQLSTATE[42S02]: Base table or view not found: 1146 Table 'phpbb_unittest.phpbb_user' doesn't exist]
/phpbb3/tests/auth/provider/native_test.php:17