Skip to content

Instantly share code, notes, and snippets.

View inkrement's full-sized avatar

Christian Hotz-Behofsits inkrement

View GitHub Profile
@inkrement
inkrement / JavaCandR.sublime-build
Created August 31, 2012 08:49 — forked from DevinClark/JavaCandR.sublime-build
This is a build script for Sublime Text 2 that will compile and run the open java file by simply pressing cmd + B. I am very new at Java so feel free to point out problems with this script. You can just drop this file in the User Packges folder and restar
{
"cmd": ["javac", "$file_name"],
"cmd": ["java", "$file_base_name"],
"working_dir": "${project_path:${folder}}",
"selector": "source.java"
}
@inkrement
inkrement / file1.matlab
Created May 6, 2012 17:59
logical selector matlab
menge(menge > x) = 0;
@inkrement
inkrement / PORTA LEDS on
Created March 18, 2012 09:26
ATMEL 1280 port a leds on asm
; Christian Hotz-Behofsits 2012
; i/o example in asm (atmega 1280)
; set leds on button event
.NOLIST
.INCLUDE "m1280def.inc"
.LIST
@inkrement
inkrement / 2.2.1.s
Created March 16, 2012 10:49
Mikrocontroller
; Christian Hotz-Behofsits 2012
; logical functions in asm (atmega 1280)
;
; 1st PA4: (PA1 and PA2) or PA3
; 2nd PA5: (PA1 or not PA2) and PA3
; 3rd PA6: PA1 xor PA2
; 3rd PA7: PA1 == PA2
.NOLIST
.INCLUDE "m1280def.inc"
@inkrement
inkrement / stackadd.s
Created March 15, 2012 11:39
AVR Stack Addition
; Christian Hotz-Behofsits 2012
; Simple AVRASM Test - take all values from the Stack, add them and print to PORTA
.NOLIST
.INCLUDE "m1280def.inc"
.LIST
.section .text
.org 0x0000