Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
spiffchorder:chord_creation [2008/01/06 19:52] spiffspiffchorder:chord_creation [2023/02/09 23:32] (current) – external edit 127.0.0.1
Line 5: Line 5:
   * [[#The Format of the .h file]]   * [[#The Format of the .h file]]
   * [[#Building the Cross Compiler]]   * [[#Building the Cross Compiler]]
-  * [[#Programming the pic the First Time]] +  * [[#Programming the AVR the First Time]] 
-  * [[#Programming the pic over USB]]+  * [[#Programming the AVR over USB]]
  
  
 ===== Layout or How Many Thumbs?===== ===== Layout or How Many Thumbs?=====
 +
  
  
Line 15: Line 16:
 ===== Code Considerations ===== ===== Code Considerations =====
  
- * [[#3 modes available]] +  * [[#3 modes available]] 
- * [[#keycodes.h]] +  * [[#keycodes.h]] 
- * [[#Planning]]+  * [[#Planning]]
  
 ==== 3 modes available ==== ==== 3 modes available ====
 +
  
  
Line 25: Line 27:
 ==== keycodes.h ==== ==== keycodes.h ====
  
-The keycodes.h file contains the names you will assign to your chords.+The {{spiffchorder:keycodes.h|keycodes.h}} file contains the names you will assign to your chords.
 Unless you want to rewright some of the code (which you are more than welcome to do) you are restrictied to these key codes.  They are the usb keyboard key codes, the codes for the spiffchorder mode manipulation and some special codes that are translated by the program into a sequence of usb key codes.  There are a few kinds of lines in keycodes.h, any section beginning with slash asterik ''/*'' is a comment section up through the ''*/'' Anything following 2 slashes ''%%//%%'' is a comment from there through the end of that line.  Other than comments, there are several types of lines you need to know about: Unless you want to rewright some of the code (which you are more than welcome to do) you are restrictied to these key codes.  They are the usb keyboard key codes, the codes for the spiffchorder mode manipulation and some special codes that are translated by the program into a sequence of usb key codes.  There are a few kinds of lines in keycodes.h, any section beginning with slash asterik ''/*'' is a comment section up through the ''*/'' Anything following 2 slashes ''%%//%%'' is a comment from there through the end of that line.  Other than comments, there are several types of lines you need to know about:
  
Line 60: Line 62:
  
 ==== Planning ==== ==== Planning ====
 +
  
 ===== The Format of the .h file ===== ===== The Format of the .h file =====
 +An empty chord file is provided as {{spiffchorder:empty.h|empty.h}}.  You can use it as a template for your custom chorder.
  
 ===== Building the Cross Compiler ===== ===== Building the Cross Compiler =====
   * [[#Windows Cross Compiler]]   * [[#Windows Cross Compiler]]
   * [[#Linux Cross Compiler]]   * [[#Linux Cross Compiler]]
 +
  
 ==== Windows Cross Compiler ==== ==== Windows Cross Compiler ====
  
 +For compiling the SpiffChorder firmware under Microsoft Windows, the easiest solution is to use [[http://winavr.sourceforge.net/|WinAVR]]. This package contains the avr-gcc tool-chain, avr-libc and some other utilities, including the avrdude programming software and Programmers Notepad, all compiled into a single Windows installation package.
 +
 +The majority of the development on the SpiffChorder was done with WinAVR, and using the Programmers Notepad editor. It worked for me, so it should work for you as well (provided you have a Windows installation).
  
 ==== Linux Cross Compiler ==== ==== Linux Cross Compiler ====