diff options
author | Danny Nguyen <danny@80pct.com> | 2017-03-23 09:42:32 -0400 |
---|---|---|
committer | Danny Nguyen <danny@80pct.com> | 2017-03-23 09:42:32 -0400 |
commit | edfb50ea5616c9361e479ec41d1d2c3d72f2f51c (patch) | |
tree | 9c6a209057a70ee2062d8bc8aadb7ca7876fda88 /keyboards/atreus50/atreus50.c | |
parent | 7a9437a2e3a2597e8eef1ea293bfb3c394f588b9 (diff) |
Initial commit for Atreus50 with working audio
Diffstat (limited to 'keyboards/atreus50/atreus50.c')
-rw-r--r-- | keyboards/atreus50/atreus50.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboards/atreus50/atreus50.c b/keyboards/atreus50/atreus50.c new file mode 100644 index 0000000000..0ec63216f1 --- /dev/null +++ b/keyboards/atreus50/atreus50.c @@ -0,0 +1,10 @@ +#include "atreus50.h" + +void matrix_init_kb(void) { + + // Turn status LED on + //DDRE |= (1<<6); + PORTE |= (1<<6); + + matrix_init_user(); +};
\ No newline at end of file |