├── images ├── cn3.png ├── cn4.png ├── 573_neck.jpeg ├── 573_pick.jpeg ├── 573_tg87a.jpeg ├── 573_guitars.jpg ├── 573_board_pick.jpeg ├── 573_lis3lv02dl.jpeg ├── 573_board_buttons.jpeg ├── 573_board_motor.jpeg ├── 573_board_overview.png ├── 573_buttons_rear.jpeg ├── 573_completed_uno.jpeg ├── gfArduinoPinouts.png ├── 573_completed_micro.jpeg ├── 573_lis3lv02dl_full.jpeg ├── 573_interface_connectors.jpeg └── 573_board_overview_extracted.jpeg ├── _ddrTest └── _ddrTest.ino ├── _ddr └── _ddr.ino ├── README.md ├── _sdvx ├── bonic_sdvx.ino ├── _sdvx.ino └── boards_sdvx.txt ├── _gfxg_adxl345 └── _gfxg_adxl345.ino ├── _gfxg └── _gfxg.ino ├── _iidx ├── _iidx.ino └── boards_iidx1p.txt ├── _iidx_2p ├── _iidx_2p.ino └── boards_iidx2p.txt └── LICENSE /images/cn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/cn3.png -------------------------------------------------------------------------------- /images/cn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/cn4.png -------------------------------------------------------------------------------- /images/573_neck.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_neck.jpeg -------------------------------------------------------------------------------- /images/573_pick.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_pick.jpeg -------------------------------------------------------------------------------- /images/573_tg87a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_tg87a.jpeg -------------------------------------------------------------------------------- /images/573_guitars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_guitars.jpg -------------------------------------------------------------------------------- /images/573_board_pick.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_board_pick.jpeg -------------------------------------------------------------------------------- /images/573_lis3lv02dl.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_lis3lv02dl.jpeg -------------------------------------------------------------------------------- /images/573_board_buttons.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_board_buttons.jpeg -------------------------------------------------------------------------------- /images/573_board_motor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_board_motor.jpeg -------------------------------------------------------------------------------- /images/573_board_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_board_overview.png -------------------------------------------------------------------------------- /images/573_buttons_rear.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_buttons_rear.jpeg -------------------------------------------------------------------------------- /images/573_completed_uno.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_completed_uno.jpeg -------------------------------------------------------------------------------- /images/gfArduinoPinouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/gfArduinoPinouts.png -------------------------------------------------------------------------------- /images/573_completed_micro.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_completed_micro.jpeg -------------------------------------------------------------------------------- /images/573_lis3lv02dl_full.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_lis3lv02dl_full.jpeg -------------------------------------------------------------------------------- /images/573_interface_connectors.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_interface_connectors.jpeg -------------------------------------------------------------------------------- /images/573_board_overview_extracted.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limyz/573controller/HEAD/images/573_board_overview_extracted.jpeg -------------------------------------------------------------------------------- /_ddrTest/_ddrTest.ino: -------------------------------------------------------------------------------- 1 | //-------------------------------------------------------------------- 2 | // For use with a 573 DDR Controller 3 | // 4 | // This sketch uses 16 digital inputs and maps them to 4 keys. 5 | // 6 | // All digital pins are grounded when they are pressed. 7 | // Required libraries: 8 | // https://github.com/MHeironimus/ArduinoJoystickLibrary 9 | // 10 | // NOTE: This sketch file is for use with Arduino Leonardo or Micro 11 | // only. 12 | // 13 | // by limyz 14 | // 2020-07-18 15 | //-------------------------------------------------------------------- 16 | 17 | #include 18 | 19 | Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 20 | 16, 0, // Button Count, Hat Switch Count 21 | false, false, false, // X, Y and Z Axis 22 | false, false, false, // No Rx, Ry, or Rz 23 | false, false, // No rudder or throttle 24 | false, false, false); // No accelerator, brake, or steering 25 | 26 | void setup() { 27 | // Initialize Pins 28 | pinMode(0, INPUT_PULLUP); 29 | pinMode(1, INPUT_PULLUP); 30 | pinMode(2, INPUT_PULLUP); 31 | pinMode(3, INPUT_PULLUP); 32 | pinMode(4, INPUT_PULLUP); 33 | pinMode(5, INPUT_PULLUP); 34 | pinMode(6, INPUT_PULLUP); 35 | pinMode(7, INPUT_PULLUP); 36 | pinMode(8, INPUT_PULLUP); 37 | pinMode(9, INPUT_PULLUP); 38 | pinMode(10, INPUT_PULLUP); 39 | pinMode(14, INPUT_PULLUP); 40 | pinMode(15, INPUT_PULLUP); 41 | pinMode(16, INPUT_PULLUP); 42 | pinMode(A0, INPUT_PULLUP); 43 | pinMode(A1, INPUT_PULLUP); 44 | 45 | // Initialize Joystick Library 46 | Joystick.begin(); 47 | } 48 | 49 | byte keys[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 15, 16, A0, A1}; 50 | int lastButtonState[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; 51 | 52 | void loop() { 53 | // Read pin values 54 | for (int index = 0; index < 16; index++) { 55 | int currentButtonState = !digitalRead(keys[index]); 56 | if (currentButtonState != lastButtonState[index]) { 57 | Joystick.setButton(index, currentButtonState); 58 | lastButtonState[index] = currentButtonState; 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /_ddr/_ddr.ino: -------------------------------------------------------------------------------- 1 | //-------------------------------------------------------------------- 2 | // For use with a 573 DDR Controller 3 | // 4 | // This sketch uses 16 digital inputs and maps them to 4 keys. 5 | // 6 | // All digital pins are grounded when they are pressed. 7 | // Required libraries: 8 | // https://github.com/MHeironimus/ArduinoJoystickLibrary 9 | // 10 | // NOTE: This sketch file is for use with Arduino Leonardo or Micro 11 | // only. 12 | // 13 | // by limyz 14 | // 2020-07-18 15 | //-------------------------------------------------------------------- 16 | 17 | #include 18 | 19 | Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 20 | 4, 0, // Button Count, Hat Switch Count 21 | false, false, false, // X, Y and Z Axis 22 | false, false, false, // No Rx, Ry, or Rz 23 | false, false, // No rudder or throttle 24 | false, false, false); // No accelerator, brake, or steering 25 | 26 | void setup() { 27 | // Initialize Pins 28 | pinMode(0, INPUT_PULLUP); 29 | pinMode(1, INPUT_PULLUP); 30 | pinMode(2, INPUT_PULLUP); 31 | pinMode(3, INPUT_PULLUP); 32 | pinMode(4, INPUT_PULLUP); 33 | pinMode(5, INPUT_PULLUP); 34 | pinMode(6, INPUT_PULLUP); 35 | pinMode(7, INPUT_PULLUP); 36 | pinMode(8, INPUT_PULLUP); 37 | pinMode(9, INPUT_PULLUP); 38 | pinMode(10, INPUT_PULLUP); 39 | pinMode(14, INPUT_PULLUP); 40 | pinMode(15, INPUT_PULLUP); 41 | pinMode(16, INPUT_PULLUP); 42 | pinMode(A0, INPUT_PULLUP); 43 | pinMode(A1, INPUT_PULLUP); 44 | 45 | // Initialize Joystick Library 46 | Joystick.begin(); 47 | } 48 | 49 | byte keys[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 15, 16, A0, A1}; 50 | int lastButtonState[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; 51 | 52 | void loop() { 53 | // Read pin values 54 | for (int index = 0; index < 16; index++) { 55 | int currentButtonState = !digitalRead(keys[index]); 56 | if (currentButtonState != lastButtonState[index]) { 57 | if (index == 0 | index == 1 | index == 2 | index == 3) { 58 | Joystick.setButton(0, currentButtonState); 59 | } 60 | if (index == 4 | index == 5 | index == 6 | index == 7) { 61 | Joystick.setButton(1, currentButtonState); 62 | } 63 | if (index == 8 | index == 9 | index == 10 | index == 11) { 64 | Joystick.setButton(2, currentButtonState); 65 | } 66 | if (index == 12 | index == 13 | index == 14 | index == 15) { 67 | Joystick.setButton(3, currentButtonState); 68 | digitalWrite(A3, HIGH); 69 | } 70 | lastButtonState[index] = currentButtonState; 71 | } 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 573controller 2 | 3 | This repository houses several Arduino .ino files for use with an Arduino Leonardo or Micro to transform it into music game controller. Supported controllers include: 4 | 5 | * _ddr & _ddrTest 6 | 7 | Allows you to transform an it into a USB game controller consisting of 4 buttons. The actual machine has 16 sensors (4 for each pad) for input. Use `_ddrTest` to determine if the indivdual sensors are working. 8 | 9 | * _gfxg 10 | 11 | Allows you to transform it into a a USB game controller for use with [Clone Hero](https://clonehero.net)/[DTXAL](http://senamih.com/dtxal)/Guitar Hero/GuitarFreaks/Gitadora. For instructions on how to convert an existing guitar into one, [check out 573controller's wiki](https://github.com/limyz/573controller/wiki/DIY-Guitar). 12 | 13 | To see the controller in action, do visit [APPROVED DTX Gaming over at YouTube, where this live stream specifically shows it in use](https://youtu.be/GGR9hHf-6ow?t=180). 14 | 15 | * _iidx 16 | 17 | Allows you to transform it into a IIDX controller with full native support for [beatmania IIDX INFINITAS](https://p.eagate.573.jp/game/eac2dx/infinitas). 18 | 19 | * _iidx_2p 20 | 21 | Similar to _iidx but with buttons remapped from E1/E2 to E3/E4 for use with doubles play (DP). For players using the 2P side for single play, simply modify E3/E4 to E1/E2 button mappings. 22 | 23 | For a demostration, do visit [nsa_spy99 over at Twitch, where it shows native mapping and performance in-game](https://www.twitch.tv/nsa_spy99). 24 | 25 | * _sdvx 26 | 27 | Allows you to transform it into a SDVX controller with full native support for [SOUND VOLTEX III](https://p.eagate.573.jp/game/eacsdvx/iii). 28 | 29 | ## Requirements 30 | * Arduino Leonardo or Micro 31 | * [Arduino Joystick Library](https://github.com/MHeironimus/ArduinoJoystickLibrary) 32 | 33 | If you are using _iidx, it additionally requires: 34 | * [Quadrature Encoder Library for Arduino](https://github.com/PaulStoffregen/Encoder) 35 | * Replacement of `boards.txt` located in your `Arduino/hardware/avr` directory. This allows [beatmania IIDX INFINITAS](https://p.eagate.573.jp/game/eac2dx/infinitas) to accept in-game input natively. 36 | 37 | If you are using _sdvx, it additionally requires: 38 | * [Quadrature Encoder Library for Arduino](https://github.com/PaulStoffregen/Encoder) 39 | * Replacement of `boards.txt` located in your `Arduino/hardware/avr` directory. This allows [SOUND VOLTEX III](https://p.eagate.573.jp/game/eacsdvx/iii) to accept in-game input natively. 40 | 41 | ## Donations Appreciated! 42 | 43 | [If you appreciate my work, why not treat me a beer?](https://paypal.me/limyz) 44 | 45 | [![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://paypal.me/limyz) 46 | -------------------------------------------------------------------------------- /_sdvx/bonic_sdvx.ino: -------------------------------------------------------------------------------- 1 | //-------------------------------------------------------------------- 2 | // For use with a 573 SDVX Controller 3 | // 4 | // This sketch maps 2 rotary encoders and uses 7 digital 5 | // inputs. (7 for its keys) 6 | // 7 | // All digital pins are grounded when they are pressed. 8 | // 9 | // NOTE: This sketch file is for use with Arduino Leonardo or Micro 10 | // only. 11 | // 12 | // by lyzzz 13 | // 2021-10-10 14 | //-------------------------------------------------------------------- 15 | 16 | #define ENCODER_OPTIMIZE_INTERRUPTS 17 | #include 18 | #include 19 | 20 | Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 21 | 10, 0, // Button Count, Hat Switch Count 22 | true, true, false, // X, Y and Z Axis 23 | false, false, false, // No Rx, Ry, or Rz 24 | false, false, // No rudder or throttle 25 | false, false, false); // No accelerator, brake, or steering 26 | 27 | void setup() { 28 | // Initialize Pins 29 | // FX and Start Buttons 30 | pinMode(7, INPUT_PULLUP); 31 | pinMode(10, INPUT_PULLUP); 32 | pinMode(8, INPUT_PULLUP); 33 | pinMode(4, INPUT_PULLUP); 34 | pinMode(6, INPUT_PULLUP); 35 | pinMode(9, INPUT_PULLUP); 36 | pinMode(12, INPUT_PULLUP); 37 | 38 | // VOL-L Rotary Encoder 39 | pinMode(2, INPUT_PULLUP); 40 | pinMode(3, INPUT_PULLUP); 41 | 42 | // VOL-R Rotary Encoder 43 | pinMode(0, INPUT_PULLUP); 44 | pinMode(1, INPUT_PULLUP); 45 | 46 | // Initialize Joystick Library 47 | Joystick.begin(); 48 | Joystick.setXAxisRange(-360, 360); 49 | Joystick.setYAxisRange(-360, 360); 50 | } 51 | 52 | // Last state of the buttons 53 | int keys[7] = {10, 8, 4, 6, 9, 12, 7}; 54 | int lastButtonState[7] = {0,0,0,0,0,0,0}; 55 | Encoder volL(1,0); 56 | Encoder volR(2,3); 57 | 58 | void loop() { 59 | // Read pin values 60 | for (int index = 0; index < 7; index++) { 61 | int currentButtonState = !digitalRead(keys[index]); 62 | if (currentButtonState != lastButtonState[index]) { 63 | switch (index) { 64 | // BT-A 65 | case 0: 66 | Joystick.setButton(1, currentButtonState); 67 | break; 68 | 69 | // BT-B 70 | case 1: 71 | Joystick.setButton(2, currentButtonState); 72 | break; 73 | 74 | // BT-C 75 | case 2: 76 | Joystick.setButton(3, currentButtonState); 77 | break; 78 | 79 | // BT-D 80 | case 3: 81 | Joystick.setButton(4, currentButtonState); 82 | break; 83 | 84 | // FX-L 85 | case 4: 86 | Joystick.setButton(5, currentButtonState); 87 | break; 88 | 89 | // FX-R 90 | case 5: 91 | Joystick.setButton(6, currentButtonState); 92 | break; 93 | 94 | // Start 95 | case 6: 96 | Joystick.setButton(0, currentButtonState); 97 | break; 98 | } 99 | lastButtonState[index] = currentButtonState; 100 | } 101 | } 102 | 103 | if (volL.read() >= 360) { 104 | volL.write(-360); 105 | } 106 | else if (volL.read() <= -360) { 107 | volL.write(360); 108 | } 109 | 110 | if (volR.read() >= 360) { 111 | volR.write(-360); 112 | } 113 | else if (volR.read() <= -360) { 114 | volR.write(360); 115 | } 116 | 117 | Joystick.setXAxis(volL.read()); 118 | Joystick.setYAxis(volR.read()); 119 | } 120 | -------------------------------------------------------------------------------- /_gfxg_adxl345/_gfxg_adxl345.ino: -------------------------------------------------------------------------------- 1 | //-------------------------------------------------------------------- 2 | // For use with a 573 or GH Guitar Controller 3 | // 4 | // This sketch maps a ADXL345 accelerometer via I2C and uses 7 digital 5 | // inputs - 5 buttons and a 2 hat switches for the pick. 6 | // 7 | // All digital pins are grounded when they are pressed. 8 | // 9 | // NOTE: This sketch file is for use with Arduino Leonardo and 10 | // Micro only. 11 | // 12 | // by lyzzz 13 | // 2019-07-25 14 | //-------------------------------------------------------------------- 15 | 16 | #include 17 | #include 18 | #include 19 | #include 20 | 21 | /* Assign a unique ID to this sensor at the same time */ 22 | Adafruit_ADXL345_Unified accel = Adafruit_ADXL345_Unified(573); 23 | 24 | Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 25 | 5, 1, // Button Count, Hat Switch Count 26 | true, true, true, // X, Y and Z Axis 27 | false, false, false, // No Rx, Ry, or Rz 28 | false, false, // No rudder or throttle 29 | false, false, false); // No accelerator, brake, or steering 30 | 31 | void setup() { 32 | // Initialize Button Pins 33 | // Pins 2 and 3 are reserved for I2C 34 | //pinMode(2, INPUT_PULLUP); 35 | //pinMode(3, INPUT_PULLUP); 36 | 37 | // Pins 5 to 9 -> R, G, B, Y, P 38 | pinMode(4, INPUT_PULLUP); 39 | pinMode(5, INPUT_PULLUP); 40 | pinMode(6, INPUT_PULLUP); 41 | pinMode(7, INPUT_PULLUP); 42 | pinMode(8, INPUT_PULLUP); 43 | 44 | // Pins 9 to 10 -> Guitar Pick 45 | pinMode(9, INPUT_PULLUP); 46 | pinMode(10, INPUT_PULLUP); 47 | 48 | // Initialise ADXL345 49 | accel.begin(); 50 | 51 | // Set Range for ADXL345 52 | accel.setRange(ADXL345_RANGE_16_G); 53 | // accel.setRange(ADXL345_RANGE_8_G); 54 | // accel.setRange(ADXL345_RANGE_4_G); 55 | // accel.setRange(ADXL345_RANGE_2_G); 56 | 57 | // Initialize Joystick Library 58 | Joystick.begin(); 59 | Joystick.setXAxisRange(-100, 100); 60 | Joystick.setYAxisRange(-100, 100); 61 | Joystick.setZAxisRange(-100, 100); 62 | } 63 | 64 | // Constant that maps the phyical pin to the joystick button. 65 | const int pinToButtonMap = 4; 66 | const int pinToHatSwitchMap = 9; 67 | 68 | // Last state of the buttons 69 | int lastButtonState[5] = {0,0,0,0,0}; 70 | int lastHatSwitchState[2] = {0,0}; 71 | 72 | void loop() { 73 | /* Get a new sensor event */ 74 | sensors_event_t event; 75 | accel.getEvent(&event); 76 | 77 | bool valueChanged = false; 78 | 79 | Joystick.setXAxis(event.acceleration.x); 80 | Joystick.setYAxis(event.acceleration.y); 81 | Joystick.setZAxis(event.acceleration.z); 82 | 83 | // Read pin values 84 | for (int index = 0; index < 5; index++) { 85 | int currentButtonState = !digitalRead(index + pinToButtonMap); 86 | if (currentButtonState != lastButtonState[index]) { 87 | Joystick.setButton(index, currentButtonState); 88 | lastButtonState[index] = currentButtonState; 89 | } 90 | } 91 | 92 | for (int index = 0; index < 2; index++) { 93 | int currentHatSwitchState = digitalRead(index + pinToHatSwitchMap); 94 | if (currentHatSwitchState != lastHatSwitchState[index]) { 95 | valueChanged = true; 96 | lastHatSwitchState[index] = currentHatSwitchState; 97 | } 98 | } 99 | 100 | if (valueChanged) { 101 | if ((lastHatSwitchState[0] == 0) && (lastHatSwitchState[1] == 0)) { 102 | Joystick.setHatSwitch(0, -1); 103 | } 104 | if (lastHatSwitchState[0] == 1) { 105 | Joystick.setHatSwitch(0, 0); 106 | } 107 | if (lastHatSwitchState[1] == 1) { 108 | Joystick.setHatSwitch(0, 180); 109 | } 110 | } // if the value changed 111 | } 112 | -------------------------------------------------------------------------------- /_gfxg/_gfxg.ino: -------------------------------------------------------------------------------- 1 | //-------------------------------------------------------------------- 2 | // For use with a 573 or GH Guitar Controller 3 | // 4 | // This sketch maps a LIS3LV02DL accelerometer via I2C and uses 7 digital 5 | // inputs - 5 buttons and a 2 hat switches for the pick. 6 | // 7 | // All digital pins are grounded when they are pressed. 8 | // 9 | // NOTE: This sketch file is for use with Arduino Leonardo and 10 | // Micro only. 11 | // 12 | // by lyzzz 13 | // 2020-03-31 14 | //-------------------------------------------------------------------- 15 | 16 | #include 17 | #include 18 | 19 | // LIS3LV02DL Definitions 20 | int _slave_id = 0x1D; 21 | #define CTRL_REG1 0x20 22 | #define CTRL_REG2 0x21 23 | 24 | Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 25 | 5, 1, // Button Count, Hat Switch Count 26 | true, true, true, // X, Y and Z Axis 27 | false, false, false, // No Rx, Ry, or Rz 28 | false, false, // No rudder or throttle 29 | false, false, false); // No accelerator, brake, or steering 30 | 31 | byte i2c_read(byte address) { 32 | Wire.beginTransmission(_slave_id); 33 | Wire.write(address); 34 | Wire.endTransmission(); 35 | 36 | Wire.requestFrom(_slave_id, 1); 37 | while(Wire.available()) { 38 | return Wire.read(); 39 | } 40 | } 41 | 42 | void setup() { 43 | // Initialize Pins 44 | // Pins 2 and 3 -> Guitar Accelerometer (I2C) 45 | pinMode(2, INPUT_PULLUP); 46 | pinMode(3, INPUT_PULLUP); 47 | 48 | // Pins 5 to 9 -> Guitar R, G, B, Y, P Buttons 49 | pinMode(4, INPUT_PULLUP); 50 | pinMode(5, INPUT_PULLUP); 51 | pinMode(6, INPUT_PULLUP); 52 | pinMode(7, INPUT_PULLUP); 53 | pinMode(8, INPUT_PULLUP); 54 | 55 | // Pins 9 to 10 -> Guitar Pick 56 | pinMode(9, INPUT_PULLUP); 57 | pinMode(10, INPUT_PULLUP); 58 | 59 | // Initialise I2C for LIS3LV02DL 60 | Wire.begin(); 61 | Wire.beginTransmission(_slave_id); 62 | Wire.write(CTRL_REG1); 63 | Wire.write(0xF7); 64 | Wire.endTransmission(); 65 | 66 | // Initialize Joystick Library 67 | Joystick.begin(); 68 | Joystick.setXAxisRange(-2048, 2048); 69 | Joystick.setYAxisRange(-2048, 2048); 70 | Joystick.setZAxisRange(-2048, 2048); 71 | } 72 | 73 | byte keys[] = {6, 4, 5, 7, 8}; 74 | byte pick[] = {9 ,10}; 75 | int lastButtonState[5] = {0,0,0,0,0}; 76 | int lastHatSwitchState[2] = {0,0}; 77 | 78 | void loop() { 79 | #define OUTX_L 0x28 80 | #define OUTX_H 0x29 81 | #define OUTY_L 0x2A 82 | #define OUTY_H 0x2B 83 | #define OUTZ_L 0x2C 84 | #define OUTZ_H 0x2D 85 | 86 | bool valueChanged = false; 87 | byte x_val_l = i2c_read(OUTX_L), y_val_l = i2c_read(OUTY_L), z_val_l = i2c_read(OUTZ_L); 88 | byte x_val_h = i2c_read(OUTX_H), y_val_h = i2c_read(OUTY_H), z_val_h = i2c_read(OUTZ_H); 89 | 90 | // Read pin values 91 | for (int index = 0; index < 5; index++) { 92 | int currentButtonState = !digitalRead(keys[index]); 93 | if (currentButtonState != lastButtonState[index]) { 94 | Joystick.setButton(index, currentButtonState); 95 | lastButtonState[index] = currentButtonState; 96 | } 97 | } 98 | 99 | for (int index = 0; index < 2; index++) { 100 | int currentHatSwitchState = digitalRead(pick[index]); 101 | if (currentHatSwitchState != lastHatSwitchState[index]) { 102 | valueChanged = true; 103 | lastHatSwitchState[index] = currentHatSwitchState; 104 | } 105 | } 106 | 107 | if (valueChanged) { 108 | if ((lastHatSwitchState[0] == 0) && (lastHatSwitchState[1] == 0)) { 109 | Joystick.setHatSwitch(0, -1); 110 | } 111 | if (lastHatSwitchState[0] == 1) { 112 | Joystick.setHatSwitch(0, 0); 113 | } 114 | if (lastHatSwitchState[1] == 1) { 115 | Joystick.setHatSwitch(0, 180); 116 | } 117 | } 118 | 119 | Joystick.setXAxis(x_val_l | x_val_h << 8); 120 | Joystick.setYAxis(y_val_l | y_val_h << 8); 121 | Joystick.setZAxis(z_val_l | z_val_h << 8); 122 | } 123 | -------------------------------------------------------------------------------- /_sdvx/_sdvx.ino: -------------------------------------------------------------------------------- 1 | //-------------------------------------------------------------------- 2 | // For use with a 573 SDVX Controller 3 | // 4 | // This sketch maps 2 rotary encoders and uses 14 digital 5 | // inputs. (7 for the keys and 7 for its LEDs) 6 | // 7 | // All digital pins are grounded when they are pressed. 8 | // 9 | // NOTE: This sketch file is for use with Arduino Leonardo or Micro 10 | // only. 11 | // 12 | // by lyzzz 13 | // 2020-04-26 14 | //-------------------------------------------------------------------- 15 | 16 | #define ENCODER_OPTIMIZE_INTERRUPTS 17 | #include 18 | #include 19 | 20 | Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 21 | 10, 0, // Button Count, Hat Switch Count 22 | true, true, false, // X, Y and Z Axis 23 | false, false, false, // No Rx, Ry, or Rz 24 | false, false, // No rudder or throttle 25 | false, false, false); // No accelerator, brake, or steering 26 | 27 | void setup() { 28 | // Initialize Pins 29 | // FX and Start Buttons 30 | pinMode(4, INPUT_PULLUP); 31 | pinMode(5, INPUT_PULLUP); 32 | pinMode(6, INPUT_PULLUP); 33 | pinMode(7, INPUT_PULLUP); 34 | pinMode(8, INPUT_PULLUP); 35 | pinMode(9, INPUT_PULLUP); 36 | pinMode(10, INPUT_PULLUP); 37 | 38 | // FX and Start LEDs 39 | pinMode(A3, OUTPUT); 40 | pinMode(A2, OUTPUT); 41 | pinMode(A1, OUTPUT); 42 | pinMode(A0, OUTPUT); 43 | pinMode(15, OUTPUT); 44 | pinMode(14, OUTPUT); 45 | pinMode(16, OUTPUT); 46 | 47 | // VOL-L Rotary Encoder 48 | pinMode(2, INPUT_PULLUP); 49 | pinMode(3, INPUT_PULLUP); 50 | 51 | // VOL-R Rotary Encoder 52 | pinMode(0, INPUT_PULLUP); 53 | pinMode(1, INPUT_PULLUP); 54 | 55 | // Initialize Joystick Library 56 | Joystick.begin(); 57 | Joystick.setXAxisRange(-360, 360); 58 | Joystick.setYAxisRange(-360, 360); 59 | } 60 | 61 | // Constant that maps the phyical pin to the joystick button. 62 | const int pinToButtonMap = 4; 63 | 64 | // Last state of the buttons 65 | byte keys[] = {4, 5, 6, 7, 8, 9, 10}; 66 | byte LEDs[] = {A3, A2, A1, A0, 15, 14, 16}; 67 | int lastButtonState[7] = {0,0,0,0,0,0,0}; 68 | Encoder volL(0,1); 69 | Encoder volR(2,3); 70 | long previousMicros = 0; 71 | long interval = 100000; // interval at which to blink (microseconds) 72 | 73 | void loop() { 74 | unsigned long currentMicros = micros(); 75 | 76 | // Read pin values 77 | for (int index = 0; index < 7; index++) { 78 | int currentButtonState = !digitalRead(index + pinToButtonMap); 79 | if (currentButtonState != lastButtonState[index]) { 80 | switch (index) { 81 | // Start 82 | case 0: 83 | Joystick.setButton(0, currentButtonState); 84 | digitalWrite(A3, HIGH); 85 | break; 86 | // BT-A 87 | case 1: 88 | Joystick.setButton(1, currentButtonState); 89 | digitalWrite(A2, HIGH); 90 | break; 91 | // BT-B 92 | case 2: 93 | Joystick.setButton(2, currentButtonState); 94 | digitalWrite(A1, HIGH); 95 | break; 96 | // BT-C 97 | case 3: 98 | Joystick.setButton(3, currentButtonState); 99 | digitalWrite(A0, HIGH); 100 | break; 101 | // BT-D 102 | case 4: 103 | Joystick.setButton(4, currentButtonState); 104 | digitalWrite(15, HIGH); 105 | break; 106 | // FX-L 107 | case 5: 108 | Joystick.setButton(5, currentButtonState); 109 | digitalWrite(14, HIGH); 110 | break; 111 | // FX-R 112 | case 6: 113 | Joystick.setButton(6, currentButtonState); 114 | digitalWrite(16, HIGH); 115 | break; 116 | } 117 | lastButtonState[index] = currentButtonState; 118 | } 119 | } 120 | if (volL.read() >= 360) { 121 | volL.write(-360); 122 | } 123 | else if (volL.read() <= -360) { 124 | volL.write(360); 125 | } 126 | 127 | if (volR.read() >= 360) { 128 | volR.write(-360); 129 | } 130 | else if (volR.read() <= -360) { 131 | volR.write(360); 132 | } 133 | 134 | Joystick.setXAxis(volL.read()); 135 | Joystick.setYAxis(volR.read()); 136 | 137 | if(currentMicros - previousMicros > interval) { 138 | previousMicros = currentMicros; 139 | 140 | // set the LED with the ledState of the variable: 141 | for(int index = 0; index < 7; index++) { 142 | digitalWrite(LEDs[index], LOW); 143 | } 144 | } 145 | } 146 | -------------------------------------------------------------------------------- /_iidx/_iidx.ino: -------------------------------------------------------------------------------- 1 | //-------------------------------------------------------------------- 2 | // For use with a 573 IIDX Controller (1P) 3 | // 4 | // This sketch maps 2 photoelectric sensors and uses 16 digital 5 | // inputs. (9 for the keys and 7 for its LEDs) 6 | // 7 | // All digital pins are grounded when they are pressed. 8 | // Required libraries: 9 | // https://github.com/MHeironimus/ArduinoJoystickLibrary 10 | // https://github.com/PaulStoffregen/Encoder 11 | // 12 | // NOTE: This sketch file is for use with Arduino Leonardo or Micro 13 | // only. 14 | // 15 | // by limyz 16 | // 2020-04-24 17 | //-------------------------------------------------------------------- 18 | 19 | #define ENCODER_OPTIMIZE_INTERRUPTS 20 | #include 21 | #include 22 | 23 | Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 24 | 10, 0, // Button Count, Hat Switch Count 25 | true, true, false, // X, Y and Z Axis 26 | false, false, false, // No Rx, Ry, or Rz 27 | false, false, // No rudder or throttle 28 | false, false, false); // No accelerator, brake, or steering 29 | 30 | void setup() { 31 | // Initialize Pins 32 | // P1 - 7 Key Buttons 33 | pinMode(2, INPUT_PULLUP); 34 | pinMode(3, INPUT_PULLUP); 35 | pinMode(4, INPUT_PULLUP); 36 | pinMode(5, INPUT_PULLUP); 37 | pinMode(6, INPUT_PULLUP); 38 | pinMode(7, INPUT_PULLUP); 39 | pinMode(8, INPUT_PULLUP); 40 | 41 | // P1 - 7 Key LEDs 42 | pinMode(A3, OUTPUT); 43 | pinMode(A2, OUTPUT); 44 | pinMode(14, OUTPUT); 45 | pinMode(15, OUTPUT); 46 | pinMode(16, OUTPUT); 47 | pinMode(A0, OUTPUT); 48 | pinMode(A1, OUTPUT); 49 | 50 | // P1 - Effect and VEFX Buttons 51 | pinMode(9, INPUT_PULLUP); 52 | pinMode(10, INPUT_PULLUP); 53 | 54 | // P1 - Effect and VEFX LEDs 55 | // Unused 56 | 57 | // P1 - Turntable Photoelectric Sensor 58 | pinMode(0, INPUT_PULLUP); 59 | pinMode(1, INPUT_PULLUP); 60 | 61 | // Initialize Joystick Library 62 | Joystick.begin(); 63 | Joystick.setXAxisRange(-360, 360); 64 | Joystick.setYAxisRange(-360, 360); 65 | } 66 | 67 | // Constant that maps the phyical pin to the joystick button. 68 | const int pinToButtonMap = 2; 69 | 70 | // Last state of the buttons 71 | byte keys[] = {2, 3, 4, 5, 6, 7, 8}; 72 | byte LEDs[] = {A3, A2, 14, 15, 16, A0, A1}; 73 | int lastButtonState[9] = {0,0,0,0,0,0,0,0,0}; 74 | Encoder turnTable(0,1); 75 | long previousMicros = 0; 76 | long interval = 100000; // interval at which to blink (microseconds) 77 | 78 | void loop() { 79 | unsigned long currentMicros = micros(); 80 | 81 | // Read pin values 82 | for (int index = 0; index < 9; index++) { 83 | int currentButtonState = !digitalRead(index + pinToButtonMap); 84 | if (currentButtonState != lastButtonState[index]) { 85 | switch (index) { 86 | case 0: 87 | Joystick.setButton(0, currentButtonState); 88 | digitalWrite(A2, HIGH); 89 | break; 90 | case 1: 91 | Joystick.setButton(1, currentButtonState); 92 | digitalWrite(A3, HIGH); 93 | break; 94 | case 2: 95 | Joystick.setButton(2, currentButtonState); 96 | digitalWrite(14, HIGH); 97 | break; 98 | case 3: 99 | Joystick.setButton(3, currentButtonState); 100 | digitalWrite(15, HIGH); 101 | break; 102 | case 4: 103 | Joystick.setButton(4, currentButtonState); 104 | digitalWrite(16, HIGH); 105 | break; 106 | case 5: 107 | Joystick.setButton(5, currentButtonState); 108 | digitalWrite(A0, HIGH); 109 | break; 110 | case 6: 111 | Joystick.setButton(6, currentButtonState); 112 | digitalWrite(A1, HIGH); 113 | break; 114 | case 7: 115 | Joystick.setButton(8, currentButtonState); 116 | break; 117 | case 8: 118 | Joystick.setButton(9, currentButtonState); 119 | break; 120 | } 121 | lastButtonState[index] = currentButtonState; 122 | } 123 | } 124 | 125 | if (turnTable.read() >= 360) { 126 | turnTable.write(-359); 127 | } 128 | else if (turnTable.read() <= -360) { 129 | turnTable.write(359); 130 | } 131 | 132 | Joystick.setXAxis(turnTable.read()); 133 | 134 | if(currentMicros - previousMicros > interval) { 135 | previousMicros = currentMicros; 136 | 137 | for(int index = 0; index < 9; index++) { 138 | digitalWrite(LEDs[index], LOW); 139 | } 140 | } 141 | } 142 | -------------------------------------------------------------------------------- /_iidx_2p/_iidx_2p.ino: -------------------------------------------------------------------------------- 1 | //-------------------------------------------------------------------- 2 | // For use with a 573 IIDX Controller (2P) 3 | // 4 | // This sketch maps 2 photoelectric sensors and uses 16 digital 5 | // inputs. (9 for the keys and 7 for its LEDs) 6 | // 7 | // All digital pins are grounded when they are pressed. 8 | // Required libraries: 9 | // https://github.com/MHeironimus/ArduinoJoystickLibrary 10 | // https://github.com/PaulStoffregen/Encoder 11 | // 12 | // NOTE: This sketch file is for use with Arduino Leonardo or Micro 13 | // only. 14 | // 15 | // by limyz 16 | // 2020-04-24 17 | //-------------------------------------------------------------------- 18 | 19 | #define ENCODER_OPTIMIZE_INTERRUPTS 20 | #include 21 | #include 22 | 23 | Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 24 | 12, 0, // Button Count, Hat Switch Count 25 | true, true, false, // X, Y and Z Axis 26 | false, false, false, // No Rx, Ry, or Rz 27 | false, false, // No rudder or throttle 28 | false, false, false); // No accelerator, brake, or steering 29 | 30 | void setup() { 31 | // Initialize Pins 32 | // P2 - 7 Key Buttons 33 | pinMode(2, INPUT_PULLUP); 34 | pinMode(3, INPUT_PULLUP); 35 | pinMode(4, INPUT_PULLUP); 36 | pinMode(5, INPUT_PULLUP); 37 | pinMode(6, INPUT_PULLUP); 38 | pinMode(7, INPUT_PULLUP); 39 | pinMode(8, INPUT_PULLUP); 40 | 41 | // P2 - 7 Key LEDs 42 | pinMode(A3, OUTPUT); 43 | pinMode(A2, OUTPUT); 44 | pinMode(14, OUTPUT); 45 | pinMode(15, OUTPUT); 46 | pinMode(16, OUTPUT); 47 | pinMode(A0, OUTPUT); 48 | pinMode(A1, OUTPUT); 49 | 50 | // P2 - Effect and VEFX Buttons 51 | pinMode(9, INPUT_PULLUP); 52 | pinMode(10, INPUT_PULLUP); 53 | 54 | // P2 - Effect and VEFX LEDs 55 | // Unused 56 | 57 | // P2 - Turntable Photoelectric Sensor 58 | pinMode(0, INPUT_PULLUP); 59 | pinMode(1, INPUT_PULLUP); 60 | 61 | // Initialize Joystick Library 62 | Joystick.begin(); 63 | Joystick.setXAxisRange(-360, 360); 64 | Joystick.setYAxisRange(-360, 360); 65 | } 66 | 67 | // Constant that maps the phyical pin to the joystick button. 68 | const int pinToButtonMap = 2; 69 | 70 | // Last state of the buttons 71 | byte keys[] = {2, 3, 4, 5, 6, 7, 8}; 72 | byte LEDs[] = {A3, A2, 14, 15, 16, A0, A1}; 73 | int lastButtonState[9] = {0,0,0,0,0,0,0,0,0}; 74 | Encoder turnTable(0,1); 75 | long previousMicros = 0; 76 | long interval = 100000; // interval at which to blink (microseconds) 77 | 78 | void loop() { 79 | unsigned long currentMicros = micros(); 80 | 81 | // Read pin values 82 | for (int index = 0; index < 9; index++) { 83 | int currentButtonState = !digitalRead(index + pinToButtonMap); 84 | if (currentButtonState != lastButtonState[index]) { 85 | switch (index) { 86 | case 0: 87 | Joystick.setButton(0, currentButtonState); 88 | digitalWrite(A2, HIGH); 89 | break; 90 | case 1: 91 | Joystick.setButton(1, currentButtonState); 92 | digitalWrite(A3, HIGH); 93 | break; 94 | case 2: 95 | Joystick.setButton(2, currentButtonState); 96 | digitalWrite(14, HIGH); 97 | break; 98 | case 3: 99 | Joystick.setButton(3, currentButtonState); 100 | digitalWrite(15, HIGH); 101 | break; 102 | case 4: 103 | Joystick.setButton(4, currentButtonState); 104 | digitalWrite(16, HIGH); 105 | break; 106 | case 5: 107 | Joystick.setButton(5, currentButtonState); 108 | digitalWrite(A0, HIGH); 109 | break; 110 | case 6: 111 | Joystick.setButton(6, currentButtonState); 112 | digitalWrite(A1, HIGH); 113 | break; 114 | case 7: 115 | // set to button 8 if using for single play 116 | Joystick.setButton(10, currentButtonState); 117 | break; 118 | case 8: 119 | // set to button 9 if using for single play 120 | Joystick.setButton(11, currentButtonState); 121 | break; 122 | } 123 | lastButtonState[index] = currentButtonState; 124 | } 125 | } 126 | 127 | if (turnTable.read() >= 360) { 128 | turnTable.write(-359); 129 | } 130 | else if (turnTable.read() <= -360) { 131 | turnTable.write(359); 132 | } 133 | 134 | Joystick.setXAxis(turnTable.read()); 135 | 136 | if(currentMicros - previousMicros > interval) { 137 | previousMicros = currentMicros; 138 | 139 | for(int index = 0; index < 9; index++) { 140 | digitalWrite(LEDs[index], LOW); 141 | } 142 | } 143 | } 144 | -------------------------------------------------------------------------------- /_sdvx/boards_sdvx.txt: -------------------------------------------------------------------------------- 1 | # See: http://code.google.com/p/arduino/wiki/Platforms 2 | 3 | menu.cpu=Processor 4 | 5 | ############################################################## 6 | 7 | yun.name=Arduino Yún 8 | yun.upload.via_ssh=true 9 | 10 | yun.vid.0=0x2341 11 | yun.pid.0=0x0041 12 | yun.vid.1=0x2341 13 | yun.pid.1=0x8041 14 | yun.vid.2=0x2A03 15 | yun.pid.2=0x0041 16 | yun.vid.3=0x2A03 17 | yun.pid.3=0x8041 18 | 19 | yun.upload.tool=avrdude 20 | yun.upload.protocol=avr109 21 | yun.upload.maximum_size=28672 22 | yun.upload.maximum_data_size=2560 23 | yun.upload.speed=57600 24 | yun.upload.disable_flushing=true 25 | yun.upload.use_1200bps_touch=true 26 | yun.upload.wait_for_upload_port=true 27 | 28 | yun.bootloader.tool=avrdude 29 | yun.bootloader.low_fuses=0xff 30 | yun.bootloader.high_fuses=0xd8 31 | yun.bootloader.extended_fuses=0xfb 32 | yun.bootloader.file=caterina/Caterina-Yun.hex 33 | yun.bootloader.noblink=caterina/Caterina-Yun-noblink.hex 34 | yun.bootloader.unlock_bits=0x3F 35 | yun.bootloader.lock_bits=0x2F 36 | 37 | yun.build.mcu=atmega32u4 38 | yun.build.f_cpu=16000000L 39 | yun.build.vid=0x2341 40 | yun.build.pid=0x8041 41 | yun.build.usb_product="Arduino Yun" 42 | yun.build.board=AVR_YUN 43 | yun.build.core=arduino 44 | yun.build.variant=yun 45 | yun.build.extra_flags={build.usb_flags} 46 | 47 | ############################################################## 48 | 49 | uno.name=Arduino Uno 50 | 51 | uno.vid.0=0x2341 52 | uno.pid.0=0x0043 53 | uno.vid.1=0x2341 54 | uno.pid.1=0x0001 55 | uno.vid.2=0x2A03 56 | uno.pid.2=0x0043 57 | uno.vid.3=0x2341 58 | uno.pid.3=0x0243 59 | 60 | uno.upload.tool=avrdude 61 | uno.upload.protocol=arduino 62 | uno.upload.maximum_size=32256 63 | uno.upload.maximum_data_size=2048 64 | uno.upload.speed=115200 65 | 66 | uno.bootloader.tool=avrdude 67 | uno.bootloader.low_fuses=0xFF 68 | uno.bootloader.high_fuses=0xDE 69 | uno.bootloader.extended_fuses=0xFD 70 | uno.bootloader.unlock_bits=0x3F 71 | uno.bootloader.lock_bits=0x0F 72 | uno.bootloader.file=optiboot/optiboot_atmega328.hex 73 | 74 | uno.build.mcu=atmega328p 75 | uno.build.f_cpu=16000000L 76 | uno.build.board=AVR_UNO 77 | uno.build.core=arduino 78 | uno.build.variant=standard 79 | 80 | ############################################################## 81 | 82 | diecimila.name=Arduino Duemilanove or Diecimila 83 | 84 | diecimila.upload.tool=avrdude 85 | diecimila.upload.protocol=arduino 86 | 87 | diecimila.bootloader.tool=avrdude 88 | diecimila.bootloader.low_fuses=0xFF 89 | diecimila.bootloader.unlock_bits=0x3F 90 | diecimila.bootloader.lock_bits=0x0F 91 | 92 | diecimila.build.f_cpu=16000000L 93 | diecimila.build.board=AVR_DUEMILANOVE 94 | diecimila.build.core=arduino 95 | diecimila.build.variant=standard 96 | 97 | ## Arduino Duemilanove or Diecimila w/ ATmega328P 98 | ## ---------------------------------------------- 99 | diecimila.menu.cpu.atmega328=ATmega328P 100 | 101 | diecimila.menu.cpu.atmega328.upload.maximum_size=30720 102 | diecimila.menu.cpu.atmega328.upload.maximum_data_size=2048 103 | diecimila.menu.cpu.atmega328.upload.speed=57600 104 | 105 | diecimila.menu.cpu.atmega328.bootloader.high_fuses=0xDA 106 | diecimila.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 107 | diecimila.menu.cpu.atmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 108 | 109 | diecimila.menu.cpu.atmega328.build.mcu=atmega328p 110 | 111 | ## Arduino Duemilanove or Diecimila w/ ATmega168 112 | ## --------------------------------------------- 113 | diecimila.menu.cpu.atmega168=ATmega168 114 | 115 | diecimila.menu.cpu.atmega168.upload.maximum_size=14336 116 | diecimila.menu.cpu.atmega168.upload.maximum_data_size=1024 117 | diecimila.menu.cpu.atmega168.upload.speed=19200 118 | 119 | diecimila.menu.cpu.atmega168.bootloader.high_fuses=0xdd 120 | diecimila.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 121 | diecimila.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 122 | 123 | diecimila.menu.cpu.atmega168.build.mcu=atmega168 124 | 125 | ############################################################## 126 | 127 | nano.name=Arduino Nano 128 | 129 | nano.upload.tool=avrdude 130 | nano.upload.protocol=arduino 131 | 132 | nano.bootloader.tool=avrdude 133 | nano.bootloader.unlock_bits=0x3F 134 | nano.bootloader.lock_bits=0x0F 135 | 136 | nano.build.f_cpu=16000000L 137 | nano.build.board=AVR_NANO 138 | nano.build.core=arduino 139 | nano.build.variant=eightanaloginputs 140 | 141 | ## Arduino Nano w/ ATmega328P 142 | ## -------------------------- 143 | nano.menu.cpu.atmega328=ATmega328P 144 | 145 | nano.menu.cpu.atmega328.upload.maximum_size=30720 146 | nano.menu.cpu.atmega328.upload.maximum_data_size=2048 147 | nano.menu.cpu.atmega328.upload.speed=115200 148 | 149 | nano.menu.cpu.atmega328.bootloader.low_fuses=0xFF 150 | nano.menu.cpu.atmega328.bootloader.high_fuses=0xDA 151 | nano.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 152 | nano.menu.cpu.atmega328.bootloader.file=optiboot/optiboot_atmega328.hex 153 | 154 | nano.menu.cpu.atmega328.build.mcu=atmega328p 155 | 156 | ## Arduino Nano w/ ATmega328P (old bootloader) 157 | ## -------------------------- 158 | nano.menu.cpu.atmega328old=ATmega328P (Old Bootloader) 159 | 160 | nano.menu.cpu.atmega328old.upload.maximum_size=30720 161 | nano.menu.cpu.atmega328old.upload.maximum_data_size=2048 162 | nano.menu.cpu.atmega328old.upload.speed=57600 163 | 164 | nano.menu.cpu.atmega328old.bootloader.low_fuses=0xFF 165 | nano.menu.cpu.atmega328old.bootloader.high_fuses=0xDA 166 | nano.menu.cpu.atmega328old.bootloader.extended_fuses=0xFD 167 | nano.menu.cpu.atmega328old.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 168 | 169 | nano.menu.cpu.atmega328old.build.mcu=atmega328p 170 | 171 | ## Arduino Nano w/ ATmega168 172 | ## ------------------------- 173 | nano.menu.cpu.atmega168=ATmega168 174 | 175 | nano.menu.cpu.atmega168.upload.maximum_size=14336 176 | nano.menu.cpu.atmega168.upload.maximum_data_size=1024 177 | nano.menu.cpu.atmega168.upload.speed=19200 178 | 179 | nano.menu.cpu.atmega168.bootloader.low_fuses=0xff 180 | nano.menu.cpu.atmega168.bootloader.high_fuses=0xdd 181 | nano.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 182 | nano.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 183 | 184 | nano.menu.cpu.atmega168.build.mcu=atmega168 185 | 186 | ############################################################## 187 | 188 | mega.name=Arduino Mega or Mega 2560 189 | 190 | mega.vid.0=0x2341 191 | mega.pid.0=0x0010 192 | mega.vid.1=0x2341 193 | mega.pid.1=0x0042 194 | mega.vid.2=0x2A03 195 | mega.pid.2=0x0010 196 | mega.vid.3=0x2A03 197 | mega.pid.3=0x0042 198 | mega.vid.4=0x2341 199 | mega.pid.4=0x0210 200 | mega.vid.5=0x2341 201 | mega.pid.5=0x0242 202 | 203 | mega.upload.tool=avrdude 204 | mega.upload.maximum_data_size=8192 205 | 206 | mega.bootloader.tool=avrdude 207 | mega.bootloader.low_fuses=0xFF 208 | mega.bootloader.unlock_bits=0x3F 209 | mega.bootloader.lock_bits=0x0F 210 | 211 | mega.build.f_cpu=16000000L 212 | mega.build.core=arduino 213 | mega.build.variant=mega 214 | # default board may be overridden by the cpu menu 215 | mega.build.board=AVR_MEGA2560 216 | 217 | ## Arduino Mega w/ ATmega2560 218 | ## ------------------------- 219 | mega.menu.cpu.atmega2560=ATmega2560 (Mega 2560) 220 | 221 | mega.menu.cpu.atmega2560.upload.protocol=wiring 222 | mega.menu.cpu.atmega2560.upload.maximum_size=253952 223 | mega.menu.cpu.atmega2560.upload.speed=115200 224 | 225 | mega.menu.cpu.atmega2560.bootloader.high_fuses=0xD8 226 | mega.menu.cpu.atmega2560.bootloader.extended_fuses=0xFD 227 | mega.menu.cpu.atmega2560.bootloader.file=stk500v2/stk500boot_v2_mega2560.hex 228 | 229 | mega.menu.cpu.atmega2560.build.mcu=atmega2560 230 | mega.menu.cpu.atmega2560.build.board=AVR_MEGA2560 231 | 232 | ## Arduino Mega w/ ATmega1280 233 | ## ------------------------- 234 | mega.menu.cpu.atmega1280=ATmega1280 235 | 236 | mega.menu.cpu.atmega1280.upload.protocol=arduino 237 | mega.menu.cpu.atmega1280.upload.maximum_size=126976 238 | mega.menu.cpu.atmega1280.upload.speed=57600 239 | 240 | mega.menu.cpu.atmega1280.bootloader.high_fuses=0xDA 241 | mega.menu.cpu.atmega1280.bootloader.extended_fuses=0xF5 242 | mega.menu.cpu.atmega1280.bootloader.file=atmega/ATmegaBOOT_168_atmega1280.hex 243 | 244 | mega.menu.cpu.atmega1280.build.mcu=atmega1280 245 | mega.menu.cpu.atmega1280.build.board=AVR_MEGA 246 | 247 | ############################################################## 248 | 249 | megaADK.name=Arduino Mega ADK 250 | 251 | megaADK.vid.0=0x2341 252 | megaADK.pid.0=0x003f 253 | megaADK.vid.1=0x2341 254 | megaADK.pid.1=0x0044 255 | megaADK.vid.2=0x2A03 256 | megaADK.pid.2=0x003f 257 | megaADK.vid.3=0x2A03 258 | megaADK.pid.3=0x0044 259 | 260 | megaADK.upload.tool=avrdude 261 | megaADK.upload.protocol=wiring 262 | megaADK.upload.maximum_size=253952 263 | megaADK.upload.maximum_data_size=8192 264 | megaADK.upload.speed=115200 265 | 266 | megaADK.bootloader.tool=avrdude 267 | megaADK.bootloader.low_fuses=0xFF 268 | megaADK.bootloader.high_fuses=0xD8 269 | megaADK.bootloader.extended_fuses=0xFD 270 | megaADK.bootloader.file=stk500v2/stk500boot_v2_mega2560.hex 271 | megaADK.bootloader.unlock_bits=0x3F 272 | megaADK.bootloader.lock_bits=0x0F 273 | 274 | megaADK.build.mcu=atmega2560 275 | megaADK.build.f_cpu=16000000L 276 | megaADK.build.board=AVR_ADK 277 | megaADK.build.core=arduino 278 | megaADK.build.variant=mega 279 | 280 | ############################################################## 281 | 282 | leonardo.name=Arduino Leonardo 283 | leonardo.vid.0=0x2341 284 | leonardo.pid.0=0x0036 285 | leonardo.vid.1=0x2341 286 | leonardo.pid.1=0x8036 287 | leonardo.vid.2=0x2A03 288 | leonardo.pid.2=0x0036 289 | leonardo.vid.3=0x2A03 290 | leonardo.pid.3=0x8036 291 | 292 | leonardo.upload.tool=avrdude 293 | leonardo.upload.protocol=avr109 294 | leonardo.upload.maximum_size=28672 295 | leonardo.upload.maximum_data_size=2560 296 | leonardo.upload.speed=57600 297 | leonardo.upload.disable_flushing=true 298 | leonardo.upload.use_1200bps_touch=true 299 | leonardo.upload.wait_for_upload_port=true 300 | 301 | leonardo.bootloader.tool=avrdude 302 | leonardo.bootloader.low_fuses=0xff 303 | leonardo.bootloader.high_fuses=0xd8 304 | leonardo.bootloader.extended_fuses=0xcb 305 | leonardo.bootloader.file=caterina/Caterina-Leonardo.hex 306 | leonardo.bootloader.unlock_bits=0x3F 307 | leonardo.bootloader.lock_bits=0x2F 308 | 309 | leonardo.build.mcu=atmega32u4 310 | leonardo.build.f_cpu=16000000L 311 | leonardo.build.vid=0x1ccf 312 | leonardo.build.pid=0x1014 313 | leonardo.build.usb_product="SOUND VOLTEX controller" 314 | leonardo.build.board=AVR_LEONARDO 315 | leonardo.build.core=arduino 316 | leonardo.build.variant=leonardo 317 | leonardo.build.extra_flags={build.usb_flags} 318 | 319 | ############################################################## 320 | 321 | leonardoeth.name=Arduino Leonardo ETH 322 | leonardoeth.vid.0=0x2a03 323 | leonardoeth.pid.0=0x0040 324 | leonardoeth.vid.1=0x2a03 325 | leonardoeth.pid.1=0x8040 326 | 327 | leonardoeth.upload.tool=avrdude 328 | leonardoeth.upload.protocol=avr109 329 | leonardoeth.upload.maximum_size=28672 330 | leonardoeth.upload.maximum_data_size=2560 331 | leonardoeth.upload.speed=57600 332 | leonardoeth.upload.disable_flushing=true 333 | leonardoeth.upload.use_1200bps_touch=true 334 | leonardoeth.upload.wait_for_upload_port=true 335 | 336 | leonardoeth.bootloader.tool=avrdude 337 | leonardoeth.bootloader.low_fuses=0xff 338 | leonardoeth.bootloader.high_fuses=0xd8 339 | leonardoeth.bootloader.extended_fuses=0xcb 340 | leonardoeth.bootloader.file=caterina/Caterina-LeonardoEthernet.hex 341 | leonardoeth.bootloader.unlock_bits=0x3F 342 | leonardoeth.bootloader.lock_bits=0x2F 343 | 344 | leonardoeth.build.mcu=atmega32u4 345 | leonardoeth.build.f_cpu=16000000L 346 | leonardoeth.build.vid=0x2a03 347 | leonardoeth.build.pid=0x8040 348 | leonardoeth.build.usb_product="Arduino Leonardo ETH" 349 | leonardoeth.build.board=AVR_LEONARDO_ETH 350 | leonardoeth.build.core=arduino 351 | leonardoeth.build.variant=leonardo 352 | leonardoeth.build.extra_flags={build.usb_flags} 353 | 354 | ############################################################## 355 | 356 | micro.name=Arduino Micro 357 | 358 | micro.vid.0=0x2341 359 | micro.pid.0=0x0037 360 | micro.vid.1=0x2341 361 | micro.pid.1=0x8037 362 | micro.vid.2=0x2A03 363 | micro.pid.2=0x0037 364 | micro.vid.3=0x2A03 365 | micro.pid.3=0x8037 366 | micro.vid.4=0x2341 367 | micro.pid.4=0x0237 368 | micro.vid.5=0x2341 369 | micro.pid.5=0x8237 370 | 371 | micro.upload.tool=avrdude 372 | micro.upload.protocol=avr109 373 | micro.upload.maximum_size=28672 374 | micro.upload.maximum_data_size=2560 375 | micro.upload.speed=57600 376 | micro.upload.disable_flushing=true 377 | micro.upload.use_1200bps_touch=true 378 | micro.upload.wait_for_upload_port=true 379 | 380 | micro.bootloader.tool=avrdude 381 | micro.bootloader.low_fuses=0xff 382 | micro.bootloader.high_fuses=0xd8 383 | micro.bootloader.extended_fuses=0xcb 384 | micro.bootloader.file=caterina/Caterina-Micro.hex 385 | micro.bootloader.unlock_bits=0x3F 386 | micro.bootloader.lock_bits=0x2F 387 | 388 | micro.build.mcu=atmega32u4 389 | micro.build.f_cpu=16000000L 390 | micro.build.vid=0x1ccf 391 | micro.build.pid=0x1014 392 | micro.build.usb_product="SOUND VOLTEX controller" 393 | micro.build.board=AVR_MICRO 394 | micro.build.core=arduino 395 | micro.build.variant=micro 396 | micro.build.extra_flags={build.usb_flags} 397 | 398 | ############################################################## 399 | 400 | esplora.name=Arduino Esplora 401 | esplora.vid.0=0x2341 402 | esplora.pid.0=0x003C 403 | esplora.vid.1=0x2341 404 | esplora.pid.1=0x803C 405 | esplora.vid.2=0x2A03 406 | esplora.pid.2=0x003C 407 | esplora.vid.3=0x2A03 408 | esplora.pid.3=0x803C 409 | 410 | esplora.upload.tool=avrdude 411 | esplora.upload.protocol=avr109 412 | esplora.upload.maximum_size=28672 413 | esplora.upload.maximum_data_size=2560 414 | esplora.upload.speed=57600 415 | esplora.upload.disable_flushing=true 416 | esplora.upload.use_1200bps_touch=true 417 | esplora.upload.wait_for_upload_port=true 418 | 419 | esplora.bootloader.tool=avrdude 420 | esplora.bootloader.low_fuses=0xff 421 | esplora.bootloader.high_fuses=0xd8 422 | esplora.bootloader.extended_fuses=0xcb 423 | esplora.bootloader.file=caterina/Caterina-Esplora.hex 424 | esplora.bootloader.unlock_bits=0x3F 425 | esplora.bootloader.lock_bits=0x2F 426 | 427 | esplora.build.mcu=atmega32u4 428 | esplora.build.f_cpu=16000000L 429 | esplora.build.vid=0x2341 430 | esplora.build.pid=0x803c 431 | esplora.build.usb_product="Arduino Esplora" 432 | esplora.build.board=AVR_ESPLORA 433 | esplora.build.core=arduino 434 | esplora.build.variant=leonardo 435 | esplora.build.extra_flags={build.usb_flags} 436 | 437 | ############################################################## 438 | 439 | mini.name=Arduino Mini 440 | 441 | mini.upload.tool=avrdude 442 | mini.upload.protocol=arduino 443 | 444 | mini.bootloader.tool=avrdude 445 | mini.bootloader.low_fuses=0xff 446 | mini.bootloader.unlock_bits=0x3F 447 | mini.bootloader.lock_bits=0x0F 448 | 449 | mini.build.f_cpu=16000000L 450 | mini.build.board=AVR_MINI 451 | mini.build.core=arduino 452 | mini.build.variant=eightanaloginputs 453 | 454 | ## Arduino Mini w/ ATmega328P 455 | ## -------------------------- 456 | mini.menu.cpu.atmega328=ATmega328P 457 | 458 | mini.menu.cpu.atmega328.upload.maximum_size=28672 459 | mini.menu.cpu.atmega328.upload.maximum_data_size=2048 460 | mini.menu.cpu.atmega328.upload.speed=115200 461 | 462 | mini.menu.cpu.atmega328.bootloader.high_fuses=0xd8 463 | mini.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 464 | mini.menu.cpu.atmega328.bootloader.file=optiboot/optiboot_atmega328-Mini.hex 465 | 466 | mini.menu.cpu.atmega328.build.mcu=atmega328p 467 | 468 | ## Arduino Mini w/ ATmega168 469 | ## ------------------------- 470 | mini.menu.cpu.atmega168=ATmega168 471 | 472 | mini.menu.cpu.atmega168.upload.maximum_size=14336 473 | mini.menu.cpu.atmega168.upload.maximum_data_size=1024 474 | mini.menu.cpu.atmega168.upload.speed=19200 475 | 476 | mini.menu.cpu.atmega168.bootloader.high_fuses=0xdd 477 | mini.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 478 | mini.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_ng.hex 479 | 480 | mini.menu.cpu.atmega168.build.mcu=atmega168 481 | 482 | ############################################################## 483 | 484 | ethernet.name=Arduino Ethernet 485 | 486 | ethernet.upload.tool=avrdude 487 | ethernet.upload.protocol=arduino 488 | ethernet.upload.maximum_size=32256 489 | ethernet.upload.maximum_data_size=2048 490 | ethernet.upload.speed=115200 491 | 492 | ethernet.bootloader.tool=avrdude 493 | ethernet.bootloader.low_fuses=0xff 494 | ethernet.bootloader.high_fuses=0xde 495 | ethernet.bootloader.extended_fuses=0xFD 496 | ethernet.bootloader.file=optiboot/optiboot_atmega328.hex 497 | ethernet.bootloader.unlock_bits=0x3F 498 | ethernet.bootloader.lock_bits=0x0F 499 | 500 | ethernet.build.variant=ethernet 501 | ethernet.build.mcu=atmega328p 502 | ethernet.build.f_cpu=16000000L 503 | ethernet.build.board=AVR_ETHERNET 504 | ethernet.build.core=arduino 505 | 506 | ############################################################## 507 | 508 | fio.name=Arduino Fio 509 | 510 | fio.upload.tool=avrdude 511 | fio.upload.protocol=arduino 512 | fio.upload.maximum_size=30720 513 | fio.upload.maximum_data_size=2048 514 | fio.upload.speed=57600 515 | 516 | fio.bootloader.tool=avrdude 517 | fio.bootloader.low_fuses=0xFF 518 | fio.bootloader.high_fuses=0xDA 519 | fio.bootloader.extended_fuses=0xFD 520 | fio.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 521 | fio.bootloader.unlock_bits=0x3F 522 | fio.bootloader.lock_bits=0x0F 523 | 524 | fio.build.mcu=atmega328p 525 | fio.build.f_cpu=8000000L 526 | fio.build.board=AVR_FIO 527 | fio.build.core=arduino 528 | fio.build.variant=eightanaloginputs 529 | 530 | ############################################################## 531 | 532 | bt.name=Arduino BT 533 | 534 | bt.upload.tool=avrdude 535 | bt.upload.protocol=arduino 536 | bt.upload.speed=19200 537 | bt.upload.disable_flushing=true 538 | 539 | bt.bootloader.tool=avrdude 540 | bt.bootloader.low_fuses=0xff 541 | bt.bootloader.unlock_bits=0x3F 542 | bt.bootloader.lock_bits=0x0F 543 | 544 | bt.build.f_cpu=16000000L 545 | bt.build.board=AVR_BT 546 | bt.build.core=arduino 547 | bt.build.variant=eightanaloginputs 548 | 549 | ## Arduino BT w/ ATmega328P 550 | ## ------------------------ 551 | bt.menu.cpu.atmega328=ATmega328P 552 | bt.menu.cpu.atmega328.upload.maximum_size=28672 553 | bt.menu.cpu.atmega328.upload.maximum_data_size=2048 554 | 555 | bt.menu.cpu.atmega328.bootloader.high_fuses=0xd8 556 | bt.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 557 | bt.menu.cpu.atmega328.bootloader.file=bt/ATmegaBOOT_168_atmega328_bt.hex 558 | 559 | bt.menu.cpu.atmega328.build.mcu=atmega328p 560 | 561 | ## Arduino BT w/ ATmega168 562 | ## ----------------------- 563 | bt.menu.cpu.atmega168=ATmega168 564 | bt.menu.cpu.atmega168.upload.maximum_size=14336 565 | bt.menu.cpu.atmega168.upload.maximum_data_size=1024 566 | 567 | bt.menu.cpu.atmega168.bootloader.high_fuses=0xdd 568 | bt.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 569 | bt.menu.cpu.atmega168.bootloader.file=bt/ATmegaBOOT_168.hex 570 | 571 | bt.menu.cpu.atmega168.build.mcu=atmega168 572 | 573 | ############################################################## 574 | 575 | LilyPadUSB.name=LilyPad Arduino USB 576 | LilyPadUSB.vid.0=0x1B4F 577 | LilyPadUSB.pid.0=0x9207 578 | LilyPadUSB.vid.1=0x1B4F 579 | LilyPadUSB.pid.1=0x9208 580 | 581 | LilyPadUSB.upload.tool=avrdude 582 | LilyPadUSB.upload.protocol=avr109 583 | LilyPadUSB.upload.maximum_size=28672 584 | LilyPadUSB.upload.maximum_data_size=2560 585 | LilyPadUSB.upload.speed=57600 586 | LilyPadUSB.upload.disable_flushing=true 587 | LilyPadUSB.upload.use_1200bps_touch=true 588 | LilyPadUSB.upload.wait_for_upload_port=true 589 | 590 | LilyPadUSB.bootloader.tool=avrdude 591 | LilyPadUSB.bootloader.low_fuses=0xff 592 | LilyPadUSB.bootloader.high_fuses=0xd8 593 | LilyPadUSB.bootloader.extended_fuses=0xce 594 | LilyPadUSB.bootloader.file=caterina-LilyPadUSB/Caterina-LilyPadUSB.hex 595 | LilyPadUSB.bootloader.unlock_bits=0x3F 596 | LilyPadUSB.bootloader.lock_bits=0x2F 597 | 598 | LilyPadUSB.build.mcu=atmega32u4 599 | LilyPadUSB.build.f_cpu=8000000L 600 | LilyPadUSB.build.vid=0x1B4F 601 | LilyPadUSB.build.pid=0x9208 602 | LilyPadUSB.build.usb_product="LilyPad USB" 603 | LilyPadUSB.build.board=AVR_LILYPAD_USB 604 | LilyPadUSB.build.core=arduino 605 | LilyPadUSB.build.variant=leonardo 606 | LilyPadUSB.build.extra_flags={build.usb_flags} 607 | 608 | ############################################################## 609 | 610 | lilypad.name=LilyPad Arduino 611 | 612 | lilypad.upload.tool=avrdude 613 | lilypad.upload.protocol=arduino 614 | 615 | lilypad.bootloader.tool=avrdude 616 | lilypad.bootloader.unlock_bits=0x3F 617 | lilypad.bootloader.lock_bits=0x0F 618 | 619 | lilypad.build.f_cpu=8000000L 620 | lilypad.build.board=AVR_LILYPAD 621 | lilypad.build.core=arduino 622 | lilypad.build.variant=standard 623 | 624 | ## LilyPad Arduino w/ ATmega328P 625 | ## ----------------------------- 626 | lilypad.menu.cpu.atmega328=ATmega328P 627 | 628 | lilypad.menu.cpu.atmega328.upload.maximum_size=30720 629 | lilypad.menu.cpu.atmega328.upload.maximum_data_size=2048 630 | lilypad.menu.cpu.atmega328.upload.speed=57600 631 | 632 | lilypad.menu.cpu.atmega328.bootloader.low_fuses=0xFF 633 | lilypad.menu.cpu.atmega328.bootloader.high_fuses=0xDA 634 | lilypad.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 635 | lilypad.menu.cpu.atmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 636 | 637 | lilypad.menu.cpu.atmega328.build.mcu=atmega328p 638 | 639 | ## LilyPad Arduino w/ ATmega168 640 | ## ---------------------------- 641 | lilypad.menu.cpu.atmega168=ATmega168 642 | 643 | lilypad.menu.cpu.atmega168.upload.maximum_size=14336 644 | lilypad.menu.cpu.atmega168.upload.maximum_data_size=1024 645 | lilypad.menu.cpu.atmega168.upload.speed=19200 646 | 647 | lilypad.menu.cpu.atmega168.bootloader.low_fuses=0xe2 648 | lilypad.menu.cpu.atmega168.bootloader.high_fuses=0xdd 649 | lilypad.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 650 | lilypad.menu.cpu.atmega168.bootloader.file=lilypad/LilyPadBOOT_168.hex 651 | 652 | lilypad.menu.cpu.atmega168.build.mcu=atmega168 653 | 654 | ############################################################## 655 | 656 | pro.name=Arduino Pro or Pro Mini 657 | 658 | pro.upload.tool=avrdude 659 | pro.upload.protocol=arduino 660 | 661 | pro.bootloader.tool=avrdude 662 | pro.bootloader.unlock_bits=0x3F 663 | pro.bootloader.lock_bits=0x0F 664 | 665 | pro.build.board=AVR_PRO 666 | pro.build.core=arduino 667 | pro.build.variant=eightanaloginputs 668 | 669 | ## Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega328P 670 | ## -------------------------------------------------- 671 | pro.menu.cpu.16MHzatmega328=ATmega328P (5V, 16 MHz) 672 | 673 | pro.menu.cpu.16MHzatmega328.upload.maximum_size=30720 674 | pro.menu.cpu.16MHzatmega328.upload.maximum_data_size=2048 675 | pro.menu.cpu.16MHzatmega328.upload.speed=57600 676 | 677 | pro.menu.cpu.16MHzatmega328.bootloader.low_fuses=0xFF 678 | pro.menu.cpu.16MHzatmega328.bootloader.high_fuses=0xDA 679 | pro.menu.cpu.16MHzatmega328.bootloader.extended_fuses=0xFD 680 | pro.menu.cpu.16MHzatmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 681 | 682 | pro.menu.cpu.16MHzatmega328.build.mcu=atmega328p 683 | pro.menu.cpu.16MHzatmega328.build.f_cpu=16000000L 684 | 685 | ## Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega328P 686 | ## --------------------------------------------------- 687 | pro.menu.cpu.8MHzatmega328=ATmega328P (3.3V, 8 MHz) 688 | 689 | pro.menu.cpu.8MHzatmega328.upload.maximum_size=30720 690 | pro.menu.cpu.8MHzatmega328.upload.maximum_data_size=2048 691 | pro.menu.cpu.8MHzatmega328.upload.speed=57600 692 | 693 | pro.menu.cpu.8MHzatmega328.bootloader.low_fuses=0xFF 694 | pro.menu.cpu.8MHzatmega328.bootloader.high_fuses=0xDA 695 | pro.menu.cpu.8MHzatmega328.bootloader.extended_fuses=0xFD 696 | pro.menu.cpu.8MHzatmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 697 | 698 | pro.menu.cpu.8MHzatmega328.build.mcu=atmega328p 699 | pro.menu.cpu.8MHzatmega328.build.f_cpu=8000000L 700 | 701 | ## Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega168 702 | ## ------------------------------------------------- 703 | pro.menu.cpu.16MHzatmega168=ATmega168 (5V, 16 MHz) 704 | 705 | pro.menu.cpu.16MHzatmega168.upload.maximum_size=14336 706 | pro.menu.cpu.16MHzatmega168.upload.maximum_data_size=1024 707 | pro.menu.cpu.16MHzatmega168.upload.speed=19200 708 | 709 | pro.menu.cpu.16MHzatmega168.bootloader.low_fuses=0xff 710 | pro.menu.cpu.16MHzatmega168.bootloader.high_fuses=0xdd 711 | pro.menu.cpu.16MHzatmega168.bootloader.extended_fuses=0xF8 712 | pro.menu.cpu.16MHzatmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 713 | 714 | pro.menu.cpu.16MHzatmega168.build.mcu=atmega168 715 | pro.menu.cpu.16MHzatmega168.build.f_cpu=16000000L 716 | 717 | ## Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega168 718 | ## -------------------------------------------------- 719 | pro.menu.cpu.8MHzatmega168=ATmega168 (3.3V, 8 MHz) 720 | 721 | pro.menu.cpu.8MHzatmega168.upload.maximum_size=14336 722 | pro.menu.cpu.8MHzatmega168.upload.maximum_data_size=1024 723 | pro.menu.cpu.8MHzatmega168.upload.speed=19200 724 | 725 | pro.menu.cpu.8MHzatmega168.bootloader.low_fuses=0xc6 726 | pro.menu.cpu.8MHzatmega168.bootloader.high_fuses=0xdd 727 | pro.menu.cpu.8MHzatmega168.bootloader.extended_fuses=0xF8 728 | pro.menu.cpu.8MHzatmega168.bootloader.file=atmega/ATmegaBOOT_168_pro_8MHz.hex 729 | 730 | pro.menu.cpu.8MHzatmega168.build.mcu=atmega168 731 | pro.menu.cpu.8MHzatmega168.build.f_cpu=8000000L 732 | 733 | ############################################################## 734 | 735 | atmegang.name=Arduino NG or older 736 | 737 | atmegang.upload.tool=avrdude 738 | atmegang.upload.protocol=arduino 739 | atmegang.upload.speed=19200 740 | 741 | atmegang.bootloader.tool=avrdude 742 | atmegang.bootloader.unlock_bits=0x3F 743 | atmegang.bootloader.lock_bits=0x0F 744 | 745 | atmegang.build.mcu=atmegang 746 | atmegang.build.f_cpu=16000000L 747 | atmegang.build.board=AVR_NG 748 | atmegang.build.core=arduino 749 | atmegang.build.variant=standard 750 | 751 | ## Arduino NG or older w/ ATmega168 752 | ## -------------------------------- 753 | atmegang.menu.cpu.atmega168=ATmega168 754 | 755 | atmegang.menu.cpu.atmega168.upload.maximum_size=14336 756 | atmegang.menu.cpu.atmega168.upload.maximum_data_size=1024 757 | 758 | atmegang.menu.cpu.atmega168.bootloader.low_fuses=0xff 759 | atmegang.menu.cpu.atmega168.bootloader.high_fuses=0xdd 760 | atmegang.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 761 | atmegang.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_ng.hex 762 | 763 | atmegang.menu.cpu.atmega168.build.mcu=atmega168 764 | 765 | ## Arduino NG or older w/ ATmega8 766 | ## ------------------------------ 767 | atmegang.menu.cpu.atmega8=ATmega8 768 | 769 | atmegang.menu.cpu.atmega8.upload.maximum_size=7168 770 | atmegang.menu.cpu.atmega8.upload.maximum_data_size=1024 771 | 772 | atmegang.menu.cpu.atmega8.bootloader.low_fuses=0xdf 773 | atmegang.menu.cpu.atmega8.bootloader.high_fuses=0xca 774 | atmegang.menu.cpu.atmega8.bootloader.extended_fuses= 775 | atmegang.menu.cpu.atmega8.bootloader.file=atmega8/ATmegaBOOT-prod-firmware-2009-11-07.hex 776 | 777 | atmegang.menu.cpu.atmega8.build.mcu=atmega8 778 | 779 | ############################################################## 780 | 781 | robotControl.name=Arduino Robot Control 782 | robotControl.vid.0=0x2341 783 | robotControl.pid.0=0x0038 784 | robotControl.vid.1=0x2341 785 | robotControl.pid.1=0x8038 786 | robotControl.vid.2=0x2A03 787 | robotControl.pid.2=0x0038 788 | robotControl.vid.3=0x2A03 789 | robotControl.pid.3=0x8038 790 | 791 | robotControl.upload.tool=avrdude 792 | robotControl.upload.protocol=avr109 793 | robotControl.upload.maximum_size=28672 794 | robotControl.upload.maximum_data_size=2560 795 | robotControl.upload.speed=57600 796 | robotControl.upload.disable_flushing=true 797 | robotControl.upload.use_1200bps_touch=true 798 | robotControl.upload.wait_for_upload_port=true 799 | 800 | robotControl.bootloader.tool=avrdude 801 | robotControl.bootloader.low_fuses=0xff 802 | robotControl.bootloader.high_fuses=0xd8 803 | robotControl.bootloader.extended_fuses=0xcb 804 | robotControl.bootloader.file=caterina-Arduino_Robot/Caterina-Robot-Control.hex 805 | robotControl.bootloader.unlock_bits=0x3F 806 | robotControl.bootloader.lock_bits=0x2F 807 | 808 | robotControl.build.mcu=atmega32u4 809 | robotControl.build.f_cpu=16000000L 810 | robotControl.build.vid=0x2341 811 | robotControl.build.pid=0x8038 812 | robotControl.build.usb_product="Robot Control" 813 | robotControl.build.board=AVR_ROBOT_CONTROL 814 | robotControl.build.core=arduino 815 | robotControl.build.variant=robot_control 816 | robotControl.build.extra_flags={build.usb_flags} 817 | 818 | ############################################################## 819 | 820 | robotMotor.name=Arduino Robot Motor 821 | robotMotor.vid.0=0x2341 822 | robotMotor.pid.0=0x0039 823 | robotMotor.vid.1=0x2341 824 | robotMotor.pid.1=0x8039 825 | robotMotor.vid.2=0x2A03 826 | robotMotor.pid.2=0x0039 827 | robotMotor.vid.3=0x2A03 828 | robotMotor.pid.3=0x8039 829 | 830 | robotMotor.upload.tool=avrdude 831 | robotMotor.upload.protocol=avr109 832 | robotMotor.upload.maximum_size=28672 833 | robotMotor.upload.maximum_data_size=2560 834 | robotMotor.upload.speed=57600 835 | robotMotor.upload.disable_flushing=true 836 | robotMotor.upload.use_1200bps_touch=true 837 | robotMotor.upload.wait_for_upload_port=true 838 | 839 | robotMotor.bootloader.tool=avrdude 840 | robotMotor.bootloader.low_fuses=0xff 841 | robotMotor.bootloader.high_fuses=0xd8 842 | robotMotor.bootloader.extended_fuses=0xcb 843 | robotMotor.bootloader.file=caterina-Arduino_Robot/Caterina-Robot-Motor.hex 844 | robotMotor.bootloader.unlock_bits=0x3F 845 | robotMotor.bootloader.lock_bits=0x2F 846 | 847 | robotMotor.build.mcu=atmega32u4 848 | robotMotor.build.f_cpu=16000000L 849 | robotMotor.build.vid=0x2341 850 | robotMotor.build.pid=0x8039 851 | robotMotor.build.usb_product="Robot Motor" 852 | robotMotor.build.board=AVR_ROBOT_MOTOR 853 | robotMotor.build.core=arduino 854 | robotMotor.build.variant=robot_motor 855 | robotMotor.build.extra_flags={build.usb_flags} 856 | 857 | ############################################################## 858 | 859 | gemma.vid.0=0x2341 860 | gemma.pid.0=0x0c9f 861 | 862 | gemma.name=Arduino Gemma 863 | 864 | gemma.bootloader.low_fuses=0xF1 865 | gemma.bootloader.high_fuses=0xD5 866 | gemma.bootloader.extended_fuses=0xFE 867 | gemma.bootloader.tool=avrdude 868 | gemma.bootloader.lock_bits= 869 | gemma.bootloader.unlock_bits= 870 | gemma.bootloader.file=gemma/gemma_v1.hex 871 | 872 | gemma.build.mcu=attiny85 873 | gemma.build.f_cpu=8000000L 874 | gemma.build.core=arduino 875 | gemma.build.variant=gemma 876 | gemma.build.board=AVR_GEMMA 877 | 878 | gemma.upload.tool=avrdude 879 | gemma.upload.maximum_size=5310 880 | 881 | ############################################################## 882 | 883 | # Adafruit Circuit Playground 32u4 w/Caterina Configuration 884 | circuitplay32u4cat.name=Adafruit Circuit Playground 885 | circuitplay32u4cat.bootloader.low_fuses=0xff 886 | circuitplay32u4cat.bootloader.high_fuses=0xd8 887 | circuitplay32u4cat.bootloader.extended_fuses=0xcb 888 | circuitplay32u4cat.bootloader.file=caterina/Caterina-Circuitplay32u4.hex 889 | circuitplay32u4cat.bootloader.unlock_bits=0x3F 890 | circuitplay32u4cat.bootloader.lock_bits=0x2F 891 | circuitplay32u4cat.bootloader.tool=avrdude 892 | circuitplay32u4cat.build.mcu=atmega32u4 893 | circuitplay32u4cat.build.f_cpu=8000000L 894 | circuitplay32u4cat.build.vid=0x239A 895 | circuitplay32u4cat.build.pid=0x8011 896 | circuitplay32u4cat.build.core=arduino 897 | circuitplay32u4cat.build.variant=circuitplay32u4 898 | circuitplay32u4cat.build.board=AVR_CIRCUITPLAY 899 | circuitplay32u4cat.build.usb_product="Circuit Playground" 900 | circuitplay32u4cat.build.usb_manufacturer="Adafruit" 901 | circuitplay32u4cat.build.extra_flags={build.usb_flags} 902 | circuitplay32u4cat.upload.protocol=avr109 903 | circuitplay32u4cat.upload.maximum_size=28672 904 | circuitplay32u4cat.upload.speed=57600 905 | circuitplay32u4cat.upload.disable_flushing=true 906 | circuitplay32u4cat.upload.use_1200bps_touch=true 907 | circuitplay32u4cat.upload.wait_for_upload_port=true 908 | circuitplay32u4cat.upload.tool=avrdude 909 | circuitplay32u4cat.vid.0=0x239A 910 | circuitplay32u4cat.pid.0=0x8011 911 | 912 | ############################################################## 913 | 914 | yunmini.name=Arduino Yún Mini 915 | yunmini.upload.via_ssh=true 916 | 917 | yunmini.vid.0=0x2a03 918 | yunmini.pid.0=0x0050 919 | yunmini.vid.1=0x2a03 920 | yunmini.pid.1=0x8050 921 | 922 | yunmini.upload.tool=avrdude 923 | yunmini.upload.protocol=avr109 924 | yunmini.upload.maximum_size=28672 925 | yunmini.upload.maximum_data_size=2560 926 | yunmini.upload.speed=57600 927 | yunmini.upload.disable_flushing=true 928 | yunmini.upload.use_1200bps_touch=true 929 | yunmini.upload.wait_for_upload_port=true 930 | 931 | yunmini.bootloader.tool=avrdude 932 | yunmini.bootloader.low_fuses=0xff 933 | yunmini.bootloader.high_fuses=0xd8 934 | yunmini.bootloader.extended_fuses=0xfb 935 | yunmini.bootloader.file=caterina/Caterina-YunMini.hex 936 | yunmini.bootloader.unlock_bits=0x3F 937 | yunmini.bootloader.lock_bits=0x2F 938 | 939 | yunmini.build.mcu=atmega32u4 940 | yunmini.build.f_cpu=16000000L 941 | yunmini.build.vid=0x2a03 942 | yunmini.build.pid=0x8050 943 | yunmini.build.usb_product="Arduino Yún Mini" 944 | yunmini.build.board=AVR_YUNMINI 945 | yunmini.build.core=arduino 946 | yunmini.build.variant=yun 947 | yunmini.build.extra_flags={build.usb_flags} 948 | 949 | ############################################################## 950 | 951 | chiwawa.name=Arduino Industrial 101 952 | chiwawa.upload.via_ssh=true 953 | 954 | chiwawa.vid.0=0x2a03 955 | chiwawa.pid.0=0x0056 956 | chiwawa.vid.1=0x2a03 957 | chiwawa.pid.1=0x8056 958 | 959 | chiwawa.upload.tool=avrdude 960 | chiwawa.upload.protocol=avr109 961 | chiwawa.upload.maximum_size=28672 962 | chiwawa.upload.maximum_data_size=2560 963 | chiwawa.upload.speed=57600 964 | chiwawa.upload.disable_flushing=true 965 | chiwawa.upload.use_1200bps_touch=true 966 | chiwawa.upload.wait_for_upload_port=true 967 | 968 | chiwawa.bootloader.tool=avrdude 969 | chiwawa.bootloader.low_fuses=0xff 970 | chiwawa.bootloader.high_fuses=0xd8 971 | chiwawa.bootloader.extended_fuses=0xfb 972 | chiwawa.bootloader.file=caterina/Caterina-Industrial101.hex 973 | chiwawa.bootloader.unlock_bits=0x3F 974 | chiwawa.bootloader.lock_bits=0x2F 975 | 976 | chiwawa.build.mcu=atmega32u4 977 | chiwawa.build.f_cpu=16000000L 978 | chiwawa.build.vid=0x2a03 979 | chiwawa.build.pid=0x8056 980 | chiwawa.build.usb_product="Arduino Industrial 101" 981 | chiwawa.build.board=AVR_INDUSTRIAL101 982 | chiwawa.build.core=arduino 983 | chiwawa.build.variant=yun 984 | chiwawa.build.extra_flags={build.usb_flags} 985 | 986 | ############################################################## 987 | 988 | one.name=Linino One 989 | one.upload.via_ssh=true 990 | 991 | one.vid.0=0x2a03 992 | one.pid.0=0x0001 993 | one.vid.1=0x2a03 994 | one.pid.1=0x8001 995 | 996 | one.upload.tool=avrdude 997 | one.upload.protocol=avr109 998 | one.upload.maximum_size=28672 999 | one.upload.maximum_data_size=2560 1000 | one.upload.speed=57600 1001 | one.upload.disable_flushing=true 1002 | one.upload.use_1200bps_touch=true 1003 | one.upload.wait_for_upload_port=true 1004 | 1005 | one.bootloader.tool=avrdude 1006 | one.bootloader.low_fuses=0xff 1007 | one.bootloader.high_fuses=0xd8 1008 | one.bootloader.extended_fuses=0xfb 1009 | one.bootloader.file=caterina/Caterina-LininoOne.hex 1010 | one.bootloader.unlock_bits=0x3F 1011 | one.bootloader.lock_bits=0x2F 1012 | 1013 | one.build.mcu=atmega32u4 1014 | one.build.f_cpu=16000000L 1015 | one.build.vid=0x2a03 1016 | one.build.pid=0x8001 1017 | one.build.usb_product="Linino One" 1018 | one.build.board=AVR_LININO_ONE 1019 | one.build.core=arduino 1020 | one.build.variant=yun 1021 | one.build.extra_flags={build.usb_flags} 1022 | 1023 | ############################################################## 1024 | 1025 | unowifi.name=Arduino Uno WiFi 1026 | unowifi.vid.0=0x2A03 1027 | unowifi.pid.0=0x0057 1028 | 1029 | unowifi.upload.tool=avrdude 1030 | unowifi.upload.protocol=arduino 1031 | unowifi.upload.maximum_size=32256 1032 | unowifi.upload.maximum_data_size=2048 1033 | unowifi.upload.speed=115200 1034 | unowifi.upload.network.endpoint_upload=/pgm/upload 1035 | unowifi.upload.network.endpoint_sync=/pgm/sync 1036 | unowifi.upload.network.sync_return=204:SYNC 1037 | unowifi.upload.network.endpoint_reset=/log/reset 1038 | unowifi.upload.network.port=80 1039 | 1040 | unowifi.bootloader.tool=avrdude 1041 | unowifi.bootloader.low_fuses=0xFF 1042 | unowifi.bootloader.high_fuses=0xDE 1043 | unowifi.bootloader.extended_fuses=0x05 1044 | unowifi.bootloader.unlock_bits=0x3F 1045 | unowifi.bootloader.lock_bits=0x0F 1046 | unowifi.bootloader.file=optiboot/optiboot_atmega328.hex 1047 | 1048 | unowifi.build.mcu=atmega328p 1049 | unowifi.build.f_cpu=16000000L 1050 | unowifi.build.board=AVR_UNO_WIFI_DEV_ED 1051 | unowifi.build.core=arduino 1052 | unowifi.build.variant=standard 1053 | unowifi.build.esp_ch_uart_br=19200 1054 | unowifi.build.extra_flags=-DESP_CH_UART -DESP_CH_UART_BR={build.esp_ch_uart_br} 1055 | -------------------------------------------------------------------------------- /_iidx/boards_iidx1p.txt: -------------------------------------------------------------------------------- 1 | # See: http://code.google.com/p/arduino/wiki/Platforms 2 | 3 | menu.cpu=Processor 4 | 5 | ############################################################## 6 | 7 | yun.name=Arduino Yún 8 | yun.upload.via_ssh=true 9 | 10 | yun.vid.0=0x2341 11 | yun.pid.0=0x0041 12 | yun.vid.1=0x2341 13 | yun.pid.1=0x8041 14 | yun.vid.2=0x2A03 15 | yun.pid.2=0x0041 16 | yun.vid.3=0x2A03 17 | yun.pid.3=0x8041 18 | 19 | yun.upload.tool=avrdude 20 | yun.upload.protocol=avr109 21 | yun.upload.maximum_size=28672 22 | yun.upload.maximum_data_size=2560 23 | yun.upload.speed=57600 24 | yun.upload.disable_flushing=true 25 | yun.upload.use_1200bps_touch=true 26 | yun.upload.wait_for_upload_port=true 27 | 28 | yun.bootloader.tool=avrdude 29 | yun.bootloader.low_fuses=0xff 30 | yun.bootloader.high_fuses=0xd8 31 | yun.bootloader.extended_fuses=0xfb 32 | yun.bootloader.file=caterina/Caterina-Yun.hex 33 | yun.bootloader.noblink=caterina/Caterina-Yun-noblink.hex 34 | yun.bootloader.unlock_bits=0x3F 35 | yun.bootloader.lock_bits=0x2F 36 | 37 | yun.build.mcu=atmega32u4 38 | yun.build.f_cpu=16000000L 39 | yun.build.vid=0x2341 40 | yun.build.pid=0x8041 41 | yun.build.usb_product="Arduino Yun" 42 | yun.build.board=AVR_YUN 43 | yun.build.core=arduino 44 | yun.build.variant=yun 45 | yun.build.extra_flags={build.usb_flags} 46 | 47 | ############################################################## 48 | 49 | uno.name=Arduino Uno 50 | 51 | uno.vid.0=0x2341 52 | uno.pid.0=0x0043 53 | uno.vid.1=0x2341 54 | uno.pid.1=0x0001 55 | uno.vid.2=0x2A03 56 | uno.pid.2=0x0043 57 | uno.vid.3=0x2341 58 | uno.pid.3=0x0243 59 | 60 | uno.upload.tool=avrdude 61 | uno.upload.protocol=arduino 62 | uno.upload.maximum_size=32256 63 | uno.upload.maximum_data_size=2048 64 | uno.upload.speed=115200 65 | 66 | uno.bootloader.tool=avrdude 67 | uno.bootloader.low_fuses=0xFF 68 | uno.bootloader.high_fuses=0xDE 69 | uno.bootloader.extended_fuses=0xFD 70 | uno.bootloader.unlock_bits=0x3F 71 | uno.bootloader.lock_bits=0x0F 72 | uno.bootloader.file=optiboot/optiboot_atmega328.hex 73 | 74 | uno.build.mcu=atmega328p 75 | uno.build.f_cpu=16000000L 76 | uno.build.board=AVR_UNO 77 | uno.build.core=arduino 78 | uno.build.variant=standard 79 | 80 | ############################################################## 81 | 82 | diecimila.name=Arduino Duemilanove or Diecimila 83 | 84 | diecimila.upload.tool=avrdude 85 | diecimila.upload.protocol=arduino 86 | 87 | diecimila.bootloader.tool=avrdude 88 | diecimila.bootloader.low_fuses=0xFF 89 | diecimila.bootloader.unlock_bits=0x3F 90 | diecimila.bootloader.lock_bits=0x0F 91 | 92 | diecimila.build.f_cpu=16000000L 93 | diecimila.build.board=AVR_DUEMILANOVE 94 | diecimila.build.core=arduino 95 | diecimila.build.variant=standard 96 | 97 | ## Arduino Duemilanove or Diecimila w/ ATmega328P 98 | ## ---------------------------------------------- 99 | diecimila.menu.cpu.atmega328=ATmega328P 100 | 101 | diecimila.menu.cpu.atmega328.upload.maximum_size=30720 102 | diecimila.menu.cpu.atmega328.upload.maximum_data_size=2048 103 | diecimila.menu.cpu.atmega328.upload.speed=57600 104 | 105 | diecimila.menu.cpu.atmega328.bootloader.high_fuses=0xDA 106 | diecimila.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 107 | diecimila.menu.cpu.atmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 108 | 109 | diecimila.menu.cpu.atmega328.build.mcu=atmega328p 110 | 111 | ## Arduino Duemilanove or Diecimila w/ ATmega168 112 | ## --------------------------------------------- 113 | diecimila.menu.cpu.atmega168=ATmega168 114 | 115 | diecimila.menu.cpu.atmega168.upload.maximum_size=14336 116 | diecimila.menu.cpu.atmega168.upload.maximum_data_size=1024 117 | diecimila.menu.cpu.atmega168.upload.speed=19200 118 | 119 | diecimila.menu.cpu.atmega168.bootloader.high_fuses=0xdd 120 | diecimila.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 121 | diecimila.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 122 | 123 | diecimila.menu.cpu.atmega168.build.mcu=atmega168 124 | 125 | ############################################################## 126 | 127 | nano.name=Arduino Nano 128 | 129 | nano.upload.tool=avrdude 130 | nano.upload.protocol=arduino 131 | 132 | nano.bootloader.tool=avrdude 133 | nano.bootloader.unlock_bits=0x3F 134 | nano.bootloader.lock_bits=0x0F 135 | 136 | nano.build.f_cpu=16000000L 137 | nano.build.board=AVR_NANO 138 | nano.build.core=arduino 139 | nano.build.variant=eightanaloginputs 140 | 141 | ## Arduino Nano w/ ATmega328P 142 | ## -------------------------- 143 | nano.menu.cpu.atmega328=ATmega328P 144 | 145 | nano.menu.cpu.atmega328.upload.maximum_size=30720 146 | nano.menu.cpu.atmega328.upload.maximum_data_size=2048 147 | nano.menu.cpu.atmega328.upload.speed=115200 148 | 149 | nano.menu.cpu.atmega328.bootloader.low_fuses=0xFF 150 | nano.menu.cpu.atmega328.bootloader.high_fuses=0xDA 151 | nano.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 152 | nano.menu.cpu.atmega328.bootloader.file=optiboot/optiboot_atmega328.hex 153 | 154 | nano.menu.cpu.atmega328.build.mcu=atmega328p 155 | 156 | ## Arduino Nano w/ ATmega328P (old bootloader) 157 | ## -------------------------- 158 | nano.menu.cpu.atmega328old=ATmega328P (Old Bootloader) 159 | 160 | nano.menu.cpu.atmega328old.upload.maximum_size=30720 161 | nano.menu.cpu.atmega328old.upload.maximum_data_size=2048 162 | nano.menu.cpu.atmega328old.upload.speed=57600 163 | 164 | nano.menu.cpu.atmega328old.bootloader.low_fuses=0xFF 165 | nano.menu.cpu.atmega328old.bootloader.high_fuses=0xDA 166 | nano.menu.cpu.atmega328old.bootloader.extended_fuses=0xFD 167 | nano.menu.cpu.atmega328old.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 168 | 169 | nano.menu.cpu.atmega328old.build.mcu=atmega328p 170 | 171 | ## Arduino Nano w/ ATmega168 172 | ## ------------------------- 173 | nano.menu.cpu.atmega168=ATmega168 174 | 175 | nano.menu.cpu.atmega168.upload.maximum_size=14336 176 | nano.menu.cpu.atmega168.upload.maximum_data_size=1024 177 | nano.menu.cpu.atmega168.upload.speed=19200 178 | 179 | nano.menu.cpu.atmega168.bootloader.low_fuses=0xff 180 | nano.menu.cpu.atmega168.bootloader.high_fuses=0xdd 181 | nano.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 182 | nano.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 183 | 184 | nano.menu.cpu.atmega168.build.mcu=atmega168 185 | 186 | ############################################################## 187 | 188 | mega.name=Arduino Mega or Mega 2560 189 | 190 | mega.vid.0=0x2341 191 | mega.pid.0=0x0010 192 | mega.vid.1=0x2341 193 | mega.pid.1=0x0042 194 | mega.vid.2=0x2A03 195 | mega.pid.2=0x0010 196 | mega.vid.3=0x2A03 197 | mega.pid.3=0x0042 198 | mega.vid.4=0x2341 199 | mega.pid.4=0x0210 200 | mega.vid.5=0x2341 201 | mega.pid.5=0x0242 202 | 203 | mega.upload.tool=avrdude 204 | mega.upload.maximum_data_size=8192 205 | 206 | mega.bootloader.tool=avrdude 207 | mega.bootloader.low_fuses=0xFF 208 | mega.bootloader.unlock_bits=0x3F 209 | mega.bootloader.lock_bits=0x0F 210 | 211 | mega.build.f_cpu=16000000L 212 | mega.build.core=arduino 213 | mega.build.variant=mega 214 | # default board may be overridden by the cpu menu 215 | mega.build.board=AVR_MEGA2560 216 | 217 | ## Arduino Mega w/ ATmega2560 218 | ## ------------------------- 219 | mega.menu.cpu.atmega2560=ATmega2560 (Mega 2560) 220 | 221 | mega.menu.cpu.atmega2560.upload.protocol=wiring 222 | mega.menu.cpu.atmega2560.upload.maximum_size=253952 223 | mega.menu.cpu.atmega2560.upload.speed=115200 224 | 225 | mega.menu.cpu.atmega2560.bootloader.high_fuses=0xD8 226 | mega.menu.cpu.atmega2560.bootloader.extended_fuses=0xFD 227 | mega.menu.cpu.atmega2560.bootloader.file=stk500v2/stk500boot_v2_mega2560.hex 228 | 229 | mega.menu.cpu.atmega2560.build.mcu=atmega2560 230 | mega.menu.cpu.atmega2560.build.board=AVR_MEGA2560 231 | 232 | ## Arduino Mega w/ ATmega1280 233 | ## ------------------------- 234 | mega.menu.cpu.atmega1280=ATmega1280 235 | 236 | mega.menu.cpu.atmega1280.upload.protocol=arduino 237 | mega.menu.cpu.atmega1280.upload.maximum_size=126976 238 | mega.menu.cpu.atmega1280.upload.speed=57600 239 | 240 | mega.menu.cpu.atmega1280.bootloader.high_fuses=0xDA 241 | mega.menu.cpu.atmega1280.bootloader.extended_fuses=0xF5 242 | mega.menu.cpu.atmega1280.bootloader.file=atmega/ATmegaBOOT_168_atmega1280.hex 243 | 244 | mega.menu.cpu.atmega1280.build.mcu=atmega1280 245 | mega.menu.cpu.atmega1280.build.board=AVR_MEGA 246 | 247 | ############################################################## 248 | 249 | megaADK.name=Arduino Mega ADK 250 | 251 | megaADK.vid.0=0x2341 252 | megaADK.pid.0=0x003f 253 | megaADK.vid.1=0x2341 254 | megaADK.pid.1=0x0044 255 | megaADK.vid.2=0x2A03 256 | megaADK.pid.2=0x003f 257 | megaADK.vid.3=0x2A03 258 | megaADK.pid.3=0x0044 259 | 260 | megaADK.upload.tool=avrdude 261 | megaADK.upload.protocol=wiring 262 | megaADK.upload.maximum_size=253952 263 | megaADK.upload.maximum_data_size=8192 264 | megaADK.upload.speed=115200 265 | 266 | megaADK.bootloader.tool=avrdude 267 | megaADK.bootloader.low_fuses=0xFF 268 | megaADK.bootloader.high_fuses=0xD8 269 | megaADK.bootloader.extended_fuses=0xFD 270 | megaADK.bootloader.file=stk500v2/stk500boot_v2_mega2560.hex 271 | megaADK.bootloader.unlock_bits=0x3F 272 | megaADK.bootloader.lock_bits=0x0F 273 | 274 | megaADK.build.mcu=atmega2560 275 | megaADK.build.f_cpu=16000000L 276 | megaADK.build.board=AVR_ADK 277 | megaADK.build.core=arduino 278 | megaADK.build.variant=mega 279 | 280 | ############################################################## 281 | 282 | leonardo.name=Arduino Leonardo 283 | leonardo.vid.0=0x2341 284 | leonardo.pid.0=0x0036 285 | leonardo.vid.1=0x2341 286 | leonardo.pid.1=0x8036 287 | leonardo.vid.2=0x2A03 288 | leonardo.pid.2=0x0036 289 | leonardo.vid.3=0x2A03 290 | leonardo.pid.3=0x8036 291 | 292 | leonardo.upload.tool=avrdude 293 | leonardo.upload.protocol=avr109 294 | leonardo.upload.maximum_size=28672 295 | leonardo.upload.maximum_data_size=2560 296 | leonardo.upload.speed=57600 297 | leonardo.upload.disable_flushing=true 298 | leonardo.upload.use_1200bps_touch=true 299 | leonardo.upload.wait_for_upload_port=true 300 | 301 | leonardo.bootloader.tool=avrdude 302 | leonardo.bootloader.low_fuses=0xff 303 | leonardo.bootloader.high_fuses=0xd8 304 | leonardo.bootloader.extended_fuses=0xcb 305 | leonardo.bootloader.file=caterina/Caterina-Leonardo.hex 306 | leonardo.bootloader.unlock_bits=0x3F 307 | leonardo.bootloader.lock_bits=0x2F 308 | 309 | leonardo.build.mcu=atmega32u4 310 | leonardo.build.f_cpu=16000000L 311 | leonardo.build.vid=0x1ccf 312 | leonardo.build.pid=0x8048 313 | leonardo.build.usb_product="beatmania IIDX 1P Controller" 314 | leonardo.build.board=AVR_LEONARDO 315 | leonardo.build.core=arduino 316 | leonardo.build.variant=leonardo 317 | leonardo.build.extra_flags={build.usb_flags} 318 | 319 | ############################################################## 320 | 321 | leonardoeth.name=Arduino Leonardo ETH 322 | leonardoeth.vid.0=0x2a03 323 | leonardoeth.pid.0=0x0040 324 | leonardoeth.vid.1=0x2a03 325 | leonardoeth.pid.1=0x8040 326 | 327 | leonardoeth.upload.tool=avrdude 328 | leonardoeth.upload.protocol=avr109 329 | leonardoeth.upload.maximum_size=28672 330 | leonardoeth.upload.maximum_data_size=2560 331 | leonardoeth.upload.speed=57600 332 | leonardoeth.upload.disable_flushing=true 333 | leonardoeth.upload.use_1200bps_touch=true 334 | leonardoeth.upload.wait_for_upload_port=true 335 | 336 | leonardoeth.bootloader.tool=avrdude 337 | leonardoeth.bootloader.low_fuses=0xff 338 | leonardoeth.bootloader.high_fuses=0xd8 339 | leonardoeth.bootloader.extended_fuses=0xcb 340 | leonardoeth.bootloader.file=caterina/Caterina-LeonardoEthernet.hex 341 | leonardoeth.bootloader.unlock_bits=0x3F 342 | leonardoeth.bootloader.lock_bits=0x2F 343 | 344 | leonardoeth.build.mcu=atmega32u4 345 | leonardoeth.build.f_cpu=16000000L 346 | leonardoeth.build.vid=0x2a03 347 | leonardoeth.build.pid=0x8040 348 | leonardoeth.build.usb_product="Arduino Leonardo ETH" 349 | leonardoeth.build.board=AVR_LEONARDO_ETH 350 | leonardoeth.build.core=arduino 351 | leonardoeth.build.variant=leonardo 352 | leonardoeth.build.extra_flags={build.usb_flags} 353 | 354 | ############################################################## 355 | 356 | micro.name=Arduino Micro 357 | 358 | micro.vid.0=0x2341 359 | micro.pid.0=0x0037 360 | micro.vid.1=0x2341 361 | micro.pid.1=0x8037 362 | micro.vid.2=0x2A03 363 | micro.pid.2=0x0037 364 | micro.vid.3=0x2A03 365 | micro.pid.3=0x8037 366 | micro.vid.4=0x2341 367 | micro.pid.4=0x0237 368 | micro.vid.5=0x2341 369 | micro.pid.5=0x8237 370 | 371 | micro.upload.tool=avrdude 372 | micro.upload.protocol=avr109 373 | micro.upload.maximum_size=28672 374 | micro.upload.maximum_data_size=2560 375 | micro.upload.speed=57600 376 | micro.upload.disable_flushing=true 377 | micro.upload.use_1200bps_touch=true 378 | micro.upload.wait_for_upload_port=true 379 | 380 | micro.bootloader.tool=avrdude 381 | micro.bootloader.low_fuses=0xff 382 | micro.bootloader.high_fuses=0xd8 383 | micro.bootloader.extended_fuses=0xcb 384 | micro.bootloader.file=caterina/Caterina-Micro.hex 385 | micro.bootloader.unlock_bits=0x3F 386 | micro.bootloader.lock_bits=0x2F 387 | 388 | micro.build.mcu=atmega32u4 389 | micro.build.f_cpu=16000000L 390 | micro.build.vid=0x1ccf 391 | micro.build.pid=0x8048 392 | micro.build.usb_product="beatmania IIDX 1P Controller" 393 | micro.build.board=AVR_MICRO 394 | micro.build.core=arduino 395 | micro.build.variant=micro 396 | micro.build.extra_flags={build.usb_flags} 397 | 398 | ############################################################## 399 | 400 | esplora.name=Arduino Esplora 401 | esplora.vid.0=0x2341 402 | esplora.pid.0=0x003C 403 | esplora.vid.1=0x2341 404 | esplora.pid.1=0x803C 405 | esplora.vid.2=0x2A03 406 | esplora.pid.2=0x003C 407 | esplora.vid.3=0x2A03 408 | esplora.pid.3=0x803C 409 | 410 | esplora.upload.tool=avrdude 411 | esplora.upload.protocol=avr109 412 | esplora.upload.maximum_size=28672 413 | esplora.upload.maximum_data_size=2560 414 | esplora.upload.speed=57600 415 | esplora.upload.disable_flushing=true 416 | esplora.upload.use_1200bps_touch=true 417 | esplora.upload.wait_for_upload_port=true 418 | 419 | esplora.bootloader.tool=avrdude 420 | esplora.bootloader.low_fuses=0xff 421 | esplora.bootloader.high_fuses=0xd8 422 | esplora.bootloader.extended_fuses=0xcb 423 | esplora.bootloader.file=caterina/Caterina-Esplora.hex 424 | esplora.bootloader.unlock_bits=0x3F 425 | esplora.bootloader.lock_bits=0x2F 426 | 427 | esplora.build.mcu=atmega32u4 428 | esplora.build.f_cpu=16000000L 429 | esplora.build.vid=0x2341 430 | esplora.build.pid=0x803c 431 | esplora.build.usb_product="Arduino Esplora" 432 | esplora.build.board=AVR_ESPLORA 433 | esplora.build.core=arduino 434 | esplora.build.variant=leonardo 435 | esplora.build.extra_flags={build.usb_flags} 436 | 437 | ############################################################## 438 | 439 | mini.name=Arduino Mini 440 | 441 | mini.upload.tool=avrdude 442 | mini.upload.protocol=arduino 443 | 444 | mini.bootloader.tool=avrdude 445 | mini.bootloader.low_fuses=0xff 446 | mini.bootloader.unlock_bits=0x3F 447 | mini.bootloader.lock_bits=0x0F 448 | 449 | mini.build.f_cpu=16000000L 450 | mini.build.board=AVR_MINI 451 | mini.build.core=arduino 452 | mini.build.variant=eightanaloginputs 453 | 454 | ## Arduino Mini w/ ATmega328P 455 | ## -------------------------- 456 | mini.menu.cpu.atmega328=ATmega328P 457 | 458 | mini.menu.cpu.atmega328.upload.maximum_size=28672 459 | mini.menu.cpu.atmega328.upload.maximum_data_size=2048 460 | mini.menu.cpu.atmega328.upload.speed=115200 461 | 462 | mini.menu.cpu.atmega328.bootloader.high_fuses=0xd8 463 | mini.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 464 | mini.menu.cpu.atmega328.bootloader.file=optiboot/optiboot_atmega328-Mini.hex 465 | 466 | mini.menu.cpu.atmega328.build.mcu=atmega328p 467 | 468 | ## Arduino Mini w/ ATmega168 469 | ## ------------------------- 470 | mini.menu.cpu.atmega168=ATmega168 471 | 472 | mini.menu.cpu.atmega168.upload.maximum_size=14336 473 | mini.menu.cpu.atmega168.upload.maximum_data_size=1024 474 | mini.menu.cpu.atmega168.upload.speed=19200 475 | 476 | mini.menu.cpu.atmega168.bootloader.high_fuses=0xdd 477 | mini.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 478 | mini.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_ng.hex 479 | 480 | mini.menu.cpu.atmega168.build.mcu=atmega168 481 | 482 | ############################################################## 483 | 484 | ethernet.name=Arduino Ethernet 485 | 486 | ethernet.upload.tool=avrdude 487 | ethernet.upload.protocol=arduino 488 | ethernet.upload.maximum_size=32256 489 | ethernet.upload.maximum_data_size=2048 490 | ethernet.upload.speed=115200 491 | 492 | ethernet.bootloader.tool=avrdude 493 | ethernet.bootloader.low_fuses=0xff 494 | ethernet.bootloader.high_fuses=0xde 495 | ethernet.bootloader.extended_fuses=0xFD 496 | ethernet.bootloader.file=optiboot/optiboot_atmega328.hex 497 | ethernet.bootloader.unlock_bits=0x3F 498 | ethernet.bootloader.lock_bits=0x0F 499 | 500 | ethernet.build.variant=ethernet 501 | ethernet.build.mcu=atmega328p 502 | ethernet.build.f_cpu=16000000L 503 | ethernet.build.board=AVR_ETHERNET 504 | ethernet.build.core=arduino 505 | 506 | ############################################################## 507 | 508 | fio.name=Arduino Fio 509 | 510 | fio.upload.tool=avrdude 511 | fio.upload.protocol=arduino 512 | fio.upload.maximum_size=30720 513 | fio.upload.maximum_data_size=2048 514 | fio.upload.speed=57600 515 | 516 | fio.bootloader.tool=avrdude 517 | fio.bootloader.low_fuses=0xFF 518 | fio.bootloader.high_fuses=0xDA 519 | fio.bootloader.extended_fuses=0xFD 520 | fio.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 521 | fio.bootloader.unlock_bits=0x3F 522 | fio.bootloader.lock_bits=0x0F 523 | 524 | fio.build.mcu=atmega328p 525 | fio.build.f_cpu=8000000L 526 | fio.build.board=AVR_FIO 527 | fio.build.core=arduino 528 | fio.build.variant=eightanaloginputs 529 | 530 | ############################################################## 531 | 532 | bt.name=Arduino BT 533 | 534 | bt.upload.tool=avrdude 535 | bt.upload.protocol=arduino 536 | bt.upload.speed=19200 537 | bt.upload.disable_flushing=true 538 | 539 | bt.bootloader.tool=avrdude 540 | bt.bootloader.low_fuses=0xff 541 | bt.bootloader.unlock_bits=0x3F 542 | bt.bootloader.lock_bits=0x0F 543 | 544 | bt.build.f_cpu=16000000L 545 | bt.build.board=AVR_BT 546 | bt.build.core=arduino 547 | bt.build.variant=eightanaloginputs 548 | 549 | ## Arduino BT w/ ATmega328P 550 | ## ------------------------ 551 | bt.menu.cpu.atmega328=ATmega328P 552 | bt.menu.cpu.atmega328.upload.maximum_size=28672 553 | bt.menu.cpu.atmega328.upload.maximum_data_size=2048 554 | 555 | bt.menu.cpu.atmega328.bootloader.high_fuses=0xd8 556 | bt.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 557 | bt.menu.cpu.atmega328.bootloader.file=bt/ATmegaBOOT_168_atmega328_bt.hex 558 | 559 | bt.menu.cpu.atmega328.build.mcu=atmega328p 560 | 561 | ## Arduino BT w/ ATmega168 562 | ## ----------------------- 563 | bt.menu.cpu.atmega168=ATmega168 564 | bt.menu.cpu.atmega168.upload.maximum_size=14336 565 | bt.menu.cpu.atmega168.upload.maximum_data_size=1024 566 | 567 | bt.menu.cpu.atmega168.bootloader.high_fuses=0xdd 568 | bt.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 569 | bt.menu.cpu.atmega168.bootloader.file=bt/ATmegaBOOT_168.hex 570 | 571 | bt.menu.cpu.atmega168.build.mcu=atmega168 572 | 573 | ############################################################## 574 | 575 | LilyPadUSB.name=LilyPad Arduino USB 576 | LilyPadUSB.vid.0=0x1B4F 577 | LilyPadUSB.pid.0=0x9207 578 | LilyPadUSB.vid.1=0x1B4F 579 | LilyPadUSB.pid.1=0x9208 580 | 581 | LilyPadUSB.upload.tool=avrdude 582 | LilyPadUSB.upload.protocol=avr109 583 | LilyPadUSB.upload.maximum_size=28672 584 | LilyPadUSB.upload.maximum_data_size=2560 585 | LilyPadUSB.upload.speed=57600 586 | LilyPadUSB.upload.disable_flushing=true 587 | LilyPadUSB.upload.use_1200bps_touch=true 588 | LilyPadUSB.upload.wait_for_upload_port=true 589 | 590 | LilyPadUSB.bootloader.tool=avrdude 591 | LilyPadUSB.bootloader.low_fuses=0xff 592 | LilyPadUSB.bootloader.high_fuses=0xd8 593 | LilyPadUSB.bootloader.extended_fuses=0xce 594 | LilyPadUSB.bootloader.file=caterina-LilyPadUSB/Caterina-LilyPadUSB.hex 595 | LilyPadUSB.bootloader.unlock_bits=0x3F 596 | LilyPadUSB.bootloader.lock_bits=0x2F 597 | 598 | LilyPadUSB.build.mcu=atmega32u4 599 | LilyPadUSB.build.f_cpu=8000000L 600 | LilyPadUSB.build.vid=0x1B4F 601 | LilyPadUSB.build.pid=0x9208 602 | LilyPadUSB.build.usb_product="LilyPad USB" 603 | LilyPadUSB.build.board=AVR_LILYPAD_USB 604 | LilyPadUSB.build.core=arduino 605 | LilyPadUSB.build.variant=leonardo 606 | LilyPadUSB.build.extra_flags={build.usb_flags} 607 | 608 | ############################################################## 609 | 610 | lilypad.name=LilyPad Arduino 611 | 612 | lilypad.upload.tool=avrdude 613 | lilypad.upload.protocol=arduino 614 | 615 | lilypad.bootloader.tool=avrdude 616 | lilypad.bootloader.unlock_bits=0x3F 617 | lilypad.bootloader.lock_bits=0x0F 618 | 619 | lilypad.build.f_cpu=8000000L 620 | lilypad.build.board=AVR_LILYPAD 621 | lilypad.build.core=arduino 622 | lilypad.build.variant=standard 623 | 624 | ## LilyPad Arduino w/ ATmega328P 625 | ## ----------------------------- 626 | lilypad.menu.cpu.atmega328=ATmega328P 627 | 628 | lilypad.menu.cpu.atmega328.upload.maximum_size=30720 629 | lilypad.menu.cpu.atmega328.upload.maximum_data_size=2048 630 | lilypad.menu.cpu.atmega328.upload.speed=57600 631 | 632 | lilypad.menu.cpu.atmega328.bootloader.low_fuses=0xFF 633 | lilypad.menu.cpu.atmega328.bootloader.high_fuses=0xDA 634 | lilypad.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 635 | lilypad.menu.cpu.atmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 636 | 637 | lilypad.menu.cpu.atmega328.build.mcu=atmega328p 638 | 639 | ## LilyPad Arduino w/ ATmega168 640 | ## ---------------------------- 641 | lilypad.menu.cpu.atmega168=ATmega168 642 | 643 | lilypad.menu.cpu.atmega168.upload.maximum_size=14336 644 | lilypad.menu.cpu.atmega168.upload.maximum_data_size=1024 645 | lilypad.menu.cpu.atmega168.upload.speed=19200 646 | 647 | lilypad.menu.cpu.atmega168.bootloader.low_fuses=0xe2 648 | lilypad.menu.cpu.atmega168.bootloader.high_fuses=0xdd 649 | lilypad.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 650 | lilypad.menu.cpu.atmega168.bootloader.file=lilypad/LilyPadBOOT_168.hex 651 | 652 | lilypad.menu.cpu.atmega168.build.mcu=atmega168 653 | 654 | ############################################################## 655 | 656 | pro.name=Arduino Pro or Pro Mini 657 | 658 | pro.upload.tool=avrdude 659 | pro.upload.protocol=arduino 660 | 661 | pro.bootloader.tool=avrdude 662 | pro.bootloader.unlock_bits=0x3F 663 | pro.bootloader.lock_bits=0x0F 664 | 665 | pro.build.board=AVR_PRO 666 | pro.build.core=arduino 667 | pro.build.variant=eightanaloginputs 668 | 669 | ## Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega328P 670 | ## -------------------------------------------------- 671 | pro.menu.cpu.16MHzatmega328=ATmega328P (5V, 16 MHz) 672 | 673 | pro.menu.cpu.16MHzatmega328.upload.maximum_size=30720 674 | pro.menu.cpu.16MHzatmega328.upload.maximum_data_size=2048 675 | pro.menu.cpu.16MHzatmega328.upload.speed=57600 676 | 677 | pro.menu.cpu.16MHzatmega328.bootloader.low_fuses=0xFF 678 | pro.menu.cpu.16MHzatmega328.bootloader.high_fuses=0xDA 679 | pro.menu.cpu.16MHzatmega328.bootloader.extended_fuses=0xFD 680 | pro.menu.cpu.16MHzatmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 681 | 682 | pro.menu.cpu.16MHzatmega328.build.mcu=atmega328p 683 | pro.menu.cpu.16MHzatmega328.build.f_cpu=16000000L 684 | 685 | ## Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega328P 686 | ## --------------------------------------------------- 687 | pro.menu.cpu.8MHzatmega328=ATmega328P (3.3V, 8 MHz) 688 | 689 | pro.menu.cpu.8MHzatmega328.upload.maximum_size=30720 690 | pro.menu.cpu.8MHzatmega328.upload.maximum_data_size=2048 691 | pro.menu.cpu.8MHzatmega328.upload.speed=57600 692 | 693 | pro.menu.cpu.8MHzatmega328.bootloader.low_fuses=0xFF 694 | pro.menu.cpu.8MHzatmega328.bootloader.high_fuses=0xDA 695 | pro.menu.cpu.8MHzatmega328.bootloader.extended_fuses=0xFD 696 | pro.menu.cpu.8MHzatmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 697 | 698 | pro.menu.cpu.8MHzatmega328.build.mcu=atmega328p 699 | pro.menu.cpu.8MHzatmega328.build.f_cpu=8000000L 700 | 701 | ## Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega168 702 | ## ------------------------------------------------- 703 | pro.menu.cpu.16MHzatmega168=ATmega168 (5V, 16 MHz) 704 | 705 | pro.menu.cpu.16MHzatmega168.upload.maximum_size=14336 706 | pro.menu.cpu.16MHzatmega168.upload.maximum_data_size=1024 707 | pro.menu.cpu.16MHzatmega168.upload.speed=19200 708 | 709 | pro.menu.cpu.16MHzatmega168.bootloader.low_fuses=0xff 710 | pro.menu.cpu.16MHzatmega168.bootloader.high_fuses=0xdd 711 | pro.menu.cpu.16MHzatmega168.bootloader.extended_fuses=0xF8 712 | pro.menu.cpu.16MHzatmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 713 | 714 | pro.menu.cpu.16MHzatmega168.build.mcu=atmega168 715 | pro.menu.cpu.16MHzatmega168.build.f_cpu=16000000L 716 | 717 | ## Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega168 718 | ## -------------------------------------------------- 719 | pro.menu.cpu.8MHzatmega168=ATmega168 (3.3V, 8 MHz) 720 | 721 | pro.menu.cpu.8MHzatmega168.upload.maximum_size=14336 722 | pro.menu.cpu.8MHzatmega168.upload.maximum_data_size=1024 723 | pro.menu.cpu.8MHzatmega168.upload.speed=19200 724 | 725 | pro.menu.cpu.8MHzatmega168.bootloader.low_fuses=0xc6 726 | pro.menu.cpu.8MHzatmega168.bootloader.high_fuses=0xdd 727 | pro.menu.cpu.8MHzatmega168.bootloader.extended_fuses=0xF8 728 | pro.menu.cpu.8MHzatmega168.bootloader.file=atmega/ATmegaBOOT_168_pro_8MHz.hex 729 | 730 | pro.menu.cpu.8MHzatmega168.build.mcu=atmega168 731 | pro.menu.cpu.8MHzatmega168.build.f_cpu=8000000L 732 | 733 | ############################################################## 734 | 735 | atmegang.name=Arduino NG or older 736 | 737 | atmegang.upload.tool=avrdude 738 | atmegang.upload.protocol=arduino 739 | atmegang.upload.speed=19200 740 | 741 | atmegang.bootloader.tool=avrdude 742 | atmegang.bootloader.unlock_bits=0x3F 743 | atmegang.bootloader.lock_bits=0x0F 744 | 745 | atmegang.build.mcu=atmegang 746 | atmegang.build.f_cpu=16000000L 747 | atmegang.build.board=AVR_NG 748 | atmegang.build.core=arduino 749 | atmegang.build.variant=standard 750 | 751 | ## Arduino NG or older w/ ATmega168 752 | ## -------------------------------- 753 | atmegang.menu.cpu.atmega168=ATmega168 754 | 755 | atmegang.menu.cpu.atmega168.upload.maximum_size=14336 756 | atmegang.menu.cpu.atmega168.upload.maximum_data_size=1024 757 | 758 | atmegang.menu.cpu.atmega168.bootloader.low_fuses=0xff 759 | atmegang.menu.cpu.atmega168.bootloader.high_fuses=0xdd 760 | atmegang.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 761 | atmegang.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_ng.hex 762 | 763 | atmegang.menu.cpu.atmega168.build.mcu=atmega168 764 | 765 | ## Arduino NG or older w/ ATmega8 766 | ## ------------------------------ 767 | atmegang.menu.cpu.atmega8=ATmega8 768 | 769 | atmegang.menu.cpu.atmega8.upload.maximum_size=7168 770 | atmegang.menu.cpu.atmega8.upload.maximum_data_size=1024 771 | 772 | atmegang.menu.cpu.atmega8.bootloader.low_fuses=0xdf 773 | atmegang.menu.cpu.atmega8.bootloader.high_fuses=0xca 774 | atmegang.menu.cpu.atmega8.bootloader.extended_fuses= 775 | atmegang.menu.cpu.atmega8.bootloader.file=atmega8/ATmegaBOOT-prod-firmware-2009-11-07.hex 776 | 777 | atmegang.menu.cpu.atmega8.build.mcu=atmega8 778 | 779 | ############################################################## 780 | 781 | robotControl.name=Arduino Robot Control 782 | robotControl.vid.0=0x2341 783 | robotControl.pid.0=0x0038 784 | robotControl.vid.1=0x2341 785 | robotControl.pid.1=0x8038 786 | robotControl.vid.2=0x2A03 787 | robotControl.pid.2=0x0038 788 | robotControl.vid.3=0x2A03 789 | robotControl.pid.3=0x8038 790 | 791 | robotControl.upload.tool=avrdude 792 | robotControl.upload.protocol=avr109 793 | robotControl.upload.maximum_size=28672 794 | robotControl.upload.maximum_data_size=2560 795 | robotControl.upload.speed=57600 796 | robotControl.upload.disable_flushing=true 797 | robotControl.upload.use_1200bps_touch=true 798 | robotControl.upload.wait_for_upload_port=true 799 | 800 | robotControl.bootloader.tool=avrdude 801 | robotControl.bootloader.low_fuses=0xff 802 | robotControl.bootloader.high_fuses=0xd8 803 | robotControl.bootloader.extended_fuses=0xcb 804 | robotControl.bootloader.file=caterina-Arduino_Robot/Caterina-Robot-Control.hex 805 | robotControl.bootloader.unlock_bits=0x3F 806 | robotControl.bootloader.lock_bits=0x2F 807 | 808 | robotControl.build.mcu=atmega32u4 809 | robotControl.build.f_cpu=16000000L 810 | robotControl.build.vid=0x2341 811 | robotControl.build.pid=0x8038 812 | robotControl.build.usb_product="Robot Control" 813 | robotControl.build.board=AVR_ROBOT_CONTROL 814 | robotControl.build.core=arduino 815 | robotControl.build.variant=robot_control 816 | robotControl.build.extra_flags={build.usb_flags} 817 | 818 | ############################################################## 819 | 820 | robotMotor.name=Arduino Robot Motor 821 | robotMotor.vid.0=0x2341 822 | robotMotor.pid.0=0x0039 823 | robotMotor.vid.1=0x2341 824 | robotMotor.pid.1=0x8039 825 | robotMotor.vid.2=0x2A03 826 | robotMotor.pid.2=0x0039 827 | robotMotor.vid.3=0x2A03 828 | robotMotor.pid.3=0x8039 829 | 830 | robotMotor.upload.tool=avrdude 831 | robotMotor.upload.protocol=avr109 832 | robotMotor.upload.maximum_size=28672 833 | robotMotor.upload.maximum_data_size=2560 834 | robotMotor.upload.speed=57600 835 | robotMotor.upload.disable_flushing=true 836 | robotMotor.upload.use_1200bps_touch=true 837 | robotMotor.upload.wait_for_upload_port=true 838 | 839 | robotMotor.bootloader.tool=avrdude 840 | robotMotor.bootloader.low_fuses=0xff 841 | robotMotor.bootloader.high_fuses=0xd8 842 | robotMotor.bootloader.extended_fuses=0xcb 843 | robotMotor.bootloader.file=caterina-Arduino_Robot/Caterina-Robot-Motor.hex 844 | robotMotor.bootloader.unlock_bits=0x3F 845 | robotMotor.bootloader.lock_bits=0x2F 846 | 847 | robotMotor.build.mcu=atmega32u4 848 | robotMotor.build.f_cpu=16000000L 849 | robotMotor.build.vid=0x2341 850 | robotMotor.build.pid=0x8039 851 | robotMotor.build.usb_product="Robot Motor" 852 | robotMotor.build.board=AVR_ROBOT_MOTOR 853 | robotMotor.build.core=arduino 854 | robotMotor.build.variant=robot_motor 855 | robotMotor.build.extra_flags={build.usb_flags} 856 | 857 | ############################################################## 858 | 859 | gemma.vid.0=0x2341 860 | gemma.pid.0=0x0c9f 861 | 862 | gemma.name=Arduino Gemma 863 | 864 | gemma.bootloader.low_fuses=0xF1 865 | gemma.bootloader.high_fuses=0xD5 866 | gemma.bootloader.extended_fuses=0xFE 867 | gemma.bootloader.tool=avrdude 868 | gemma.bootloader.lock_bits= 869 | gemma.bootloader.unlock_bits= 870 | gemma.bootloader.file=gemma/gemma_v1.hex 871 | 872 | gemma.build.mcu=attiny85 873 | gemma.build.f_cpu=8000000L 874 | gemma.build.core=arduino 875 | gemma.build.variant=gemma 876 | gemma.build.board=AVR_GEMMA 877 | 878 | gemma.upload.tool=avrdude 879 | gemma.upload.maximum_size=5310 880 | 881 | ############################################################## 882 | 883 | # Adafruit Circuit Playground 32u4 w/Caterina Configuration 884 | circuitplay32u4cat.name=Adafruit Circuit Playground 885 | circuitplay32u4cat.bootloader.low_fuses=0xff 886 | circuitplay32u4cat.bootloader.high_fuses=0xd8 887 | circuitplay32u4cat.bootloader.extended_fuses=0xcb 888 | circuitplay32u4cat.bootloader.file=caterina/Caterina-Circuitplay32u4.hex 889 | circuitplay32u4cat.bootloader.unlock_bits=0x3F 890 | circuitplay32u4cat.bootloader.lock_bits=0x2F 891 | circuitplay32u4cat.bootloader.tool=avrdude 892 | circuitplay32u4cat.build.mcu=atmega32u4 893 | circuitplay32u4cat.build.f_cpu=8000000L 894 | circuitplay32u4cat.build.vid=0x239A 895 | circuitplay32u4cat.build.pid=0x8011 896 | circuitplay32u4cat.build.core=arduino 897 | circuitplay32u4cat.build.variant=circuitplay32u4 898 | circuitplay32u4cat.build.board=AVR_CIRCUITPLAY 899 | circuitplay32u4cat.build.usb_product="Circuit Playground" 900 | circuitplay32u4cat.build.usb_manufacturer="Adafruit" 901 | circuitplay32u4cat.build.extra_flags={build.usb_flags} 902 | circuitplay32u4cat.upload.protocol=avr109 903 | circuitplay32u4cat.upload.maximum_size=28672 904 | circuitplay32u4cat.upload.speed=57600 905 | circuitplay32u4cat.upload.disable_flushing=true 906 | circuitplay32u4cat.upload.use_1200bps_touch=true 907 | circuitplay32u4cat.upload.wait_for_upload_port=true 908 | circuitplay32u4cat.upload.tool=avrdude 909 | circuitplay32u4cat.vid.0=0x239A 910 | circuitplay32u4cat.pid.0=0x8011 911 | 912 | ############################################################## 913 | 914 | yunmini.name=Arduino Yún Mini 915 | yunmini.upload.via_ssh=true 916 | 917 | yunmini.vid.0=0x2a03 918 | yunmini.pid.0=0x0050 919 | yunmini.vid.1=0x2a03 920 | yunmini.pid.1=0x8050 921 | 922 | yunmini.upload.tool=avrdude 923 | yunmini.upload.protocol=avr109 924 | yunmini.upload.maximum_size=28672 925 | yunmini.upload.maximum_data_size=2560 926 | yunmini.upload.speed=57600 927 | yunmini.upload.disable_flushing=true 928 | yunmini.upload.use_1200bps_touch=true 929 | yunmini.upload.wait_for_upload_port=true 930 | 931 | yunmini.bootloader.tool=avrdude 932 | yunmini.bootloader.low_fuses=0xff 933 | yunmini.bootloader.high_fuses=0xd8 934 | yunmini.bootloader.extended_fuses=0xfb 935 | yunmini.bootloader.file=caterina/Caterina-YunMini.hex 936 | yunmini.bootloader.unlock_bits=0x3F 937 | yunmini.bootloader.lock_bits=0x2F 938 | 939 | yunmini.build.mcu=atmega32u4 940 | yunmini.build.f_cpu=16000000L 941 | yunmini.build.vid=0x2a03 942 | yunmini.build.pid=0x8050 943 | yunmini.build.usb_product="Arduino Yún Mini" 944 | yunmini.build.board=AVR_YUNMINI 945 | yunmini.build.core=arduino 946 | yunmini.build.variant=yun 947 | yunmini.build.extra_flags={build.usb_flags} 948 | 949 | ############################################################## 950 | 951 | chiwawa.name=Arduino Industrial 101 952 | chiwawa.upload.via_ssh=true 953 | 954 | chiwawa.vid.0=0x2a03 955 | chiwawa.pid.0=0x0056 956 | chiwawa.vid.1=0x2a03 957 | chiwawa.pid.1=0x8056 958 | 959 | chiwawa.upload.tool=avrdude 960 | chiwawa.upload.protocol=avr109 961 | chiwawa.upload.maximum_size=28672 962 | chiwawa.upload.maximum_data_size=2560 963 | chiwawa.upload.speed=57600 964 | chiwawa.upload.disable_flushing=true 965 | chiwawa.upload.use_1200bps_touch=true 966 | chiwawa.upload.wait_for_upload_port=true 967 | 968 | chiwawa.bootloader.tool=avrdude 969 | chiwawa.bootloader.low_fuses=0xff 970 | chiwawa.bootloader.high_fuses=0xd8 971 | chiwawa.bootloader.extended_fuses=0xfb 972 | chiwawa.bootloader.file=caterina/Caterina-Industrial101.hex 973 | chiwawa.bootloader.unlock_bits=0x3F 974 | chiwawa.bootloader.lock_bits=0x2F 975 | 976 | chiwawa.build.mcu=atmega32u4 977 | chiwawa.build.f_cpu=16000000L 978 | chiwawa.build.vid=0x2a03 979 | chiwawa.build.pid=0x8056 980 | chiwawa.build.usb_product="Arduino Industrial 101" 981 | chiwawa.build.board=AVR_INDUSTRIAL101 982 | chiwawa.build.core=arduino 983 | chiwawa.build.variant=yun 984 | chiwawa.build.extra_flags={build.usb_flags} 985 | 986 | ############################################################## 987 | 988 | one.name=Linino One 989 | one.upload.via_ssh=true 990 | 991 | one.vid.0=0x2a03 992 | one.pid.0=0x0001 993 | one.vid.1=0x2a03 994 | one.pid.1=0x8001 995 | 996 | one.upload.tool=avrdude 997 | one.upload.protocol=avr109 998 | one.upload.maximum_size=28672 999 | one.upload.maximum_data_size=2560 1000 | one.upload.speed=57600 1001 | one.upload.disable_flushing=true 1002 | one.upload.use_1200bps_touch=true 1003 | one.upload.wait_for_upload_port=true 1004 | 1005 | one.bootloader.tool=avrdude 1006 | one.bootloader.low_fuses=0xff 1007 | one.bootloader.high_fuses=0xd8 1008 | one.bootloader.extended_fuses=0xfb 1009 | one.bootloader.file=caterina/Caterina-LininoOne.hex 1010 | one.bootloader.unlock_bits=0x3F 1011 | one.bootloader.lock_bits=0x2F 1012 | 1013 | one.build.mcu=atmega32u4 1014 | one.build.f_cpu=16000000L 1015 | one.build.vid=0x2a03 1016 | one.build.pid=0x8001 1017 | one.build.usb_product="Linino One" 1018 | one.build.board=AVR_LININO_ONE 1019 | one.build.core=arduino 1020 | one.build.variant=yun 1021 | one.build.extra_flags={build.usb_flags} 1022 | 1023 | ############################################################## 1024 | 1025 | unowifi.name=Arduino Uno WiFi 1026 | unowifi.vid.0=0x2A03 1027 | unowifi.pid.0=0x0057 1028 | 1029 | unowifi.upload.tool=avrdude 1030 | unowifi.upload.protocol=arduino 1031 | unowifi.upload.maximum_size=32256 1032 | unowifi.upload.maximum_data_size=2048 1033 | unowifi.upload.speed=115200 1034 | unowifi.upload.network.endpoint_upload=/pgm/upload 1035 | unowifi.upload.network.endpoint_sync=/pgm/sync 1036 | unowifi.upload.network.sync_return=204:SYNC 1037 | unowifi.upload.network.endpoint_reset=/log/reset 1038 | unowifi.upload.network.port=80 1039 | 1040 | unowifi.bootloader.tool=avrdude 1041 | unowifi.bootloader.low_fuses=0xFF 1042 | unowifi.bootloader.high_fuses=0xDE 1043 | unowifi.bootloader.extended_fuses=0x05 1044 | unowifi.bootloader.unlock_bits=0x3F 1045 | unowifi.bootloader.lock_bits=0x0F 1046 | unowifi.bootloader.file=optiboot/optiboot_atmega328.hex 1047 | 1048 | unowifi.build.mcu=atmega328p 1049 | unowifi.build.f_cpu=16000000L 1050 | unowifi.build.board=AVR_UNO_WIFI_DEV_ED 1051 | unowifi.build.core=arduino 1052 | unowifi.build.variant=standard 1053 | unowifi.build.esp_ch_uart_br=19200 1054 | unowifi.build.extra_flags=-DESP_CH_UART -DESP_CH_UART_BR={build.esp_ch_uart_br} 1055 | -------------------------------------------------------------------------------- /_iidx_2p/boards_iidx2p.txt: -------------------------------------------------------------------------------- 1 | # See: http://code.google.com/p/arduino/wiki/Platforms 2 | 3 | menu.cpu=Processor 4 | 5 | ############################################################## 6 | 7 | yun.name=Arduino Yún 8 | yun.upload.via_ssh=true 9 | 10 | yun.vid.0=0x2341 11 | yun.pid.0=0x0041 12 | yun.vid.1=0x2341 13 | yun.pid.1=0x8041 14 | yun.vid.2=0x2A03 15 | yun.pid.2=0x0041 16 | yun.vid.3=0x2A03 17 | yun.pid.3=0x8041 18 | 19 | yun.upload.tool=avrdude 20 | yun.upload.protocol=avr109 21 | yun.upload.maximum_size=28672 22 | yun.upload.maximum_data_size=2560 23 | yun.upload.speed=57600 24 | yun.upload.disable_flushing=true 25 | yun.upload.use_1200bps_touch=true 26 | yun.upload.wait_for_upload_port=true 27 | 28 | yun.bootloader.tool=avrdude 29 | yun.bootloader.low_fuses=0xff 30 | yun.bootloader.high_fuses=0xd8 31 | yun.bootloader.extended_fuses=0xfb 32 | yun.bootloader.file=caterina/Caterina-Yun.hex 33 | yun.bootloader.noblink=caterina/Caterina-Yun-noblink.hex 34 | yun.bootloader.unlock_bits=0x3F 35 | yun.bootloader.lock_bits=0x2F 36 | 37 | yun.build.mcu=atmega32u4 38 | yun.build.f_cpu=16000000L 39 | yun.build.vid=0x2341 40 | yun.build.pid=0x8041 41 | yun.build.usb_product="Arduino Yun" 42 | yun.build.board=AVR_YUN 43 | yun.build.core=arduino 44 | yun.build.variant=yun 45 | yun.build.extra_flags={build.usb_flags} 46 | 47 | ############################################################## 48 | 49 | uno.name=Arduino Uno 50 | 51 | uno.vid.0=0x2341 52 | uno.pid.0=0x0043 53 | uno.vid.1=0x2341 54 | uno.pid.1=0x0001 55 | uno.vid.2=0x2A03 56 | uno.pid.2=0x0043 57 | uno.vid.3=0x2341 58 | uno.pid.3=0x0243 59 | 60 | uno.upload.tool=avrdude 61 | uno.upload.protocol=arduino 62 | uno.upload.maximum_size=32256 63 | uno.upload.maximum_data_size=2048 64 | uno.upload.speed=115200 65 | 66 | uno.bootloader.tool=avrdude 67 | uno.bootloader.low_fuses=0xFF 68 | uno.bootloader.high_fuses=0xDE 69 | uno.bootloader.extended_fuses=0xFD 70 | uno.bootloader.unlock_bits=0x3F 71 | uno.bootloader.lock_bits=0x0F 72 | uno.bootloader.file=optiboot/optiboot_atmega328.hex 73 | 74 | uno.build.mcu=atmega328p 75 | uno.build.f_cpu=16000000L 76 | uno.build.board=AVR_UNO 77 | uno.build.core=arduino 78 | uno.build.variant=standard 79 | 80 | ############################################################## 81 | 82 | diecimila.name=Arduino Duemilanove or Diecimila 83 | 84 | diecimila.upload.tool=avrdude 85 | diecimila.upload.protocol=arduino 86 | 87 | diecimila.bootloader.tool=avrdude 88 | diecimila.bootloader.low_fuses=0xFF 89 | diecimila.bootloader.unlock_bits=0x3F 90 | diecimila.bootloader.lock_bits=0x0F 91 | 92 | diecimila.build.f_cpu=16000000L 93 | diecimila.build.board=AVR_DUEMILANOVE 94 | diecimila.build.core=arduino 95 | diecimila.build.variant=standard 96 | 97 | ## Arduino Duemilanove or Diecimila w/ ATmega328P 98 | ## ---------------------------------------------- 99 | diecimila.menu.cpu.atmega328=ATmega328P 100 | 101 | diecimila.menu.cpu.atmega328.upload.maximum_size=30720 102 | diecimila.menu.cpu.atmega328.upload.maximum_data_size=2048 103 | diecimila.menu.cpu.atmega328.upload.speed=57600 104 | 105 | diecimila.menu.cpu.atmega328.bootloader.high_fuses=0xDA 106 | diecimila.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 107 | diecimila.menu.cpu.atmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 108 | 109 | diecimila.menu.cpu.atmega328.build.mcu=atmega328p 110 | 111 | ## Arduino Duemilanove or Diecimila w/ ATmega168 112 | ## --------------------------------------------- 113 | diecimila.menu.cpu.atmega168=ATmega168 114 | 115 | diecimila.menu.cpu.atmega168.upload.maximum_size=14336 116 | diecimila.menu.cpu.atmega168.upload.maximum_data_size=1024 117 | diecimila.menu.cpu.atmega168.upload.speed=19200 118 | 119 | diecimila.menu.cpu.atmega168.bootloader.high_fuses=0xdd 120 | diecimila.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 121 | diecimila.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 122 | 123 | diecimila.menu.cpu.atmega168.build.mcu=atmega168 124 | 125 | ############################################################## 126 | 127 | nano.name=Arduino Nano 128 | 129 | nano.upload.tool=avrdude 130 | nano.upload.protocol=arduino 131 | 132 | nano.bootloader.tool=avrdude 133 | nano.bootloader.unlock_bits=0x3F 134 | nano.bootloader.lock_bits=0x0F 135 | 136 | nano.build.f_cpu=16000000L 137 | nano.build.board=AVR_NANO 138 | nano.build.core=arduino 139 | nano.build.variant=eightanaloginputs 140 | 141 | ## Arduino Nano w/ ATmega328P 142 | ## -------------------------- 143 | nano.menu.cpu.atmega328=ATmega328P 144 | 145 | nano.menu.cpu.atmega328.upload.maximum_size=30720 146 | nano.menu.cpu.atmega328.upload.maximum_data_size=2048 147 | nano.menu.cpu.atmega328.upload.speed=115200 148 | 149 | nano.menu.cpu.atmega328.bootloader.low_fuses=0xFF 150 | nano.menu.cpu.atmega328.bootloader.high_fuses=0xDA 151 | nano.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 152 | nano.menu.cpu.atmega328.bootloader.file=optiboot/optiboot_atmega328.hex 153 | 154 | nano.menu.cpu.atmega328.build.mcu=atmega328p 155 | 156 | ## Arduino Nano w/ ATmega328P (old bootloader) 157 | ## -------------------------- 158 | nano.menu.cpu.atmega328old=ATmega328P (Old Bootloader) 159 | 160 | nano.menu.cpu.atmega328old.upload.maximum_size=30720 161 | nano.menu.cpu.atmega328old.upload.maximum_data_size=2048 162 | nano.menu.cpu.atmega328old.upload.speed=57600 163 | 164 | nano.menu.cpu.atmega328old.bootloader.low_fuses=0xFF 165 | nano.menu.cpu.atmega328old.bootloader.high_fuses=0xDA 166 | nano.menu.cpu.atmega328old.bootloader.extended_fuses=0xFD 167 | nano.menu.cpu.atmega328old.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 168 | 169 | nano.menu.cpu.atmega328old.build.mcu=atmega328p 170 | 171 | ## Arduino Nano w/ ATmega168 172 | ## ------------------------- 173 | nano.menu.cpu.atmega168=ATmega168 174 | 175 | nano.menu.cpu.atmega168.upload.maximum_size=14336 176 | nano.menu.cpu.atmega168.upload.maximum_data_size=1024 177 | nano.menu.cpu.atmega168.upload.speed=19200 178 | 179 | nano.menu.cpu.atmega168.bootloader.low_fuses=0xff 180 | nano.menu.cpu.atmega168.bootloader.high_fuses=0xdd 181 | nano.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 182 | nano.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 183 | 184 | nano.menu.cpu.atmega168.build.mcu=atmega168 185 | 186 | ############################################################## 187 | 188 | mega.name=Arduino Mega or Mega 2560 189 | 190 | mega.vid.0=0x2341 191 | mega.pid.0=0x0010 192 | mega.vid.1=0x2341 193 | mega.pid.1=0x0042 194 | mega.vid.2=0x2A03 195 | mega.pid.2=0x0010 196 | mega.vid.3=0x2A03 197 | mega.pid.3=0x0042 198 | mega.vid.4=0x2341 199 | mega.pid.4=0x0210 200 | mega.vid.5=0x2341 201 | mega.pid.5=0x0242 202 | 203 | mega.upload.tool=avrdude 204 | mega.upload.maximum_data_size=8192 205 | 206 | mega.bootloader.tool=avrdude 207 | mega.bootloader.low_fuses=0xFF 208 | mega.bootloader.unlock_bits=0x3F 209 | mega.bootloader.lock_bits=0x0F 210 | 211 | mega.build.f_cpu=16000000L 212 | mega.build.core=arduino 213 | mega.build.variant=mega 214 | # default board may be overridden by the cpu menu 215 | mega.build.board=AVR_MEGA2560 216 | 217 | ## Arduino Mega w/ ATmega2560 218 | ## ------------------------- 219 | mega.menu.cpu.atmega2560=ATmega2560 (Mega 2560) 220 | 221 | mega.menu.cpu.atmega2560.upload.protocol=wiring 222 | mega.menu.cpu.atmega2560.upload.maximum_size=253952 223 | mega.menu.cpu.atmega2560.upload.speed=115200 224 | 225 | mega.menu.cpu.atmega2560.bootloader.high_fuses=0xD8 226 | mega.menu.cpu.atmega2560.bootloader.extended_fuses=0xFD 227 | mega.menu.cpu.atmega2560.bootloader.file=stk500v2/stk500boot_v2_mega2560.hex 228 | 229 | mega.menu.cpu.atmega2560.build.mcu=atmega2560 230 | mega.menu.cpu.atmega2560.build.board=AVR_MEGA2560 231 | 232 | ## Arduino Mega w/ ATmega1280 233 | ## ------------------------- 234 | mega.menu.cpu.atmega1280=ATmega1280 235 | 236 | mega.menu.cpu.atmega1280.upload.protocol=arduino 237 | mega.menu.cpu.atmega1280.upload.maximum_size=126976 238 | mega.menu.cpu.atmega1280.upload.speed=57600 239 | 240 | mega.menu.cpu.atmega1280.bootloader.high_fuses=0xDA 241 | mega.menu.cpu.atmega1280.bootloader.extended_fuses=0xF5 242 | mega.menu.cpu.atmega1280.bootloader.file=atmega/ATmegaBOOT_168_atmega1280.hex 243 | 244 | mega.menu.cpu.atmega1280.build.mcu=atmega1280 245 | mega.menu.cpu.atmega1280.build.board=AVR_MEGA 246 | 247 | ############################################################## 248 | 249 | megaADK.name=Arduino Mega ADK 250 | 251 | megaADK.vid.0=0x2341 252 | megaADK.pid.0=0x003f 253 | megaADK.vid.1=0x2341 254 | megaADK.pid.1=0x0044 255 | megaADK.vid.2=0x2A03 256 | megaADK.pid.2=0x003f 257 | megaADK.vid.3=0x2A03 258 | megaADK.pid.3=0x0044 259 | 260 | megaADK.upload.tool=avrdude 261 | megaADK.upload.protocol=wiring 262 | megaADK.upload.maximum_size=253952 263 | megaADK.upload.maximum_data_size=8192 264 | megaADK.upload.speed=115200 265 | 266 | megaADK.bootloader.tool=avrdude 267 | megaADK.bootloader.low_fuses=0xFF 268 | megaADK.bootloader.high_fuses=0xD8 269 | megaADK.bootloader.extended_fuses=0xFD 270 | megaADK.bootloader.file=stk500v2/stk500boot_v2_mega2560.hex 271 | megaADK.bootloader.unlock_bits=0x3F 272 | megaADK.bootloader.lock_bits=0x0F 273 | 274 | megaADK.build.mcu=atmega2560 275 | megaADK.build.f_cpu=16000000L 276 | megaADK.build.board=AVR_ADK 277 | megaADK.build.core=arduino 278 | megaADK.build.variant=mega 279 | 280 | ############################################################## 281 | 282 | leonardo.name=Arduino Leonardo 283 | leonardo.vid.0=0x2341 284 | leonardo.pid.0=0x0036 285 | leonardo.vid.1=0x2341 286 | leonardo.pid.1=0x8036 287 | leonardo.vid.2=0x2A03 288 | leonardo.pid.2=0x0036 289 | leonardo.vid.3=0x2A03 290 | leonardo.pid.3=0x8036 291 | 292 | leonardo.upload.tool=avrdude 293 | leonardo.upload.protocol=avr109 294 | leonardo.upload.maximum_size=28672 295 | leonardo.upload.maximum_data_size=2560 296 | leonardo.upload.speed=57600 297 | leonardo.upload.disable_flushing=true 298 | leonardo.upload.use_1200bps_touch=true 299 | leonardo.upload.wait_for_upload_port=true 300 | 301 | leonardo.bootloader.tool=avrdude 302 | leonardo.bootloader.low_fuses=0xff 303 | leonardo.bootloader.high_fuses=0xd8 304 | leonardo.bootloader.extended_fuses=0xcb 305 | leonardo.bootloader.file=caterina/Caterina-Leonardo.hex 306 | leonardo.bootloader.unlock_bits=0x3F 307 | leonardo.bootloader.lock_bits=0x2F 308 | 309 | leonardo.build.mcu=atmega32u4 310 | leonardo.build.f_cpu=16000000L 311 | leonardo.build.vid=0x1ccf 312 | leonardo.build.pid=0x8048 313 | leonardo.build.usb_product="beatmania IIDX 2P Controller" 314 | leonardo.build.board=AVR_LEONARDO 315 | leonardo.build.core=arduino 316 | leonardo.build.variant=leonardo 317 | leonardo.build.extra_flags={build.usb_flags} 318 | 319 | ############################################################## 320 | 321 | leonardoeth.name=Arduino Leonardo ETH 322 | leonardoeth.vid.0=0x2a03 323 | leonardoeth.pid.0=0x0040 324 | leonardoeth.vid.1=0x2a03 325 | leonardoeth.pid.1=0x8040 326 | 327 | leonardoeth.upload.tool=avrdude 328 | leonardoeth.upload.protocol=avr109 329 | leonardoeth.upload.maximum_size=28672 330 | leonardoeth.upload.maximum_data_size=2560 331 | leonardoeth.upload.speed=57600 332 | leonardoeth.upload.disable_flushing=true 333 | leonardoeth.upload.use_1200bps_touch=true 334 | leonardoeth.upload.wait_for_upload_port=true 335 | 336 | leonardoeth.bootloader.tool=avrdude 337 | leonardoeth.bootloader.low_fuses=0xff 338 | leonardoeth.bootloader.high_fuses=0xd8 339 | leonardoeth.bootloader.extended_fuses=0xcb 340 | leonardoeth.bootloader.file=caterina/Caterina-LeonardoEthernet.hex 341 | leonardoeth.bootloader.unlock_bits=0x3F 342 | leonardoeth.bootloader.lock_bits=0x2F 343 | 344 | leonardoeth.build.mcu=atmega32u4 345 | leonardoeth.build.f_cpu=16000000L 346 | leonardoeth.build.vid=0x2a03 347 | leonardoeth.build.pid=0x8040 348 | leonardoeth.build.usb_product="Arduino Leonardo ETH" 349 | leonardoeth.build.board=AVR_LEONARDO_ETH 350 | leonardoeth.build.core=arduino 351 | leonardoeth.build.variant=leonardo 352 | leonardoeth.build.extra_flags={build.usb_flags} 353 | 354 | ############################################################## 355 | 356 | micro.name=Arduino Micro 357 | 358 | micro.vid.0=0x2341 359 | micro.pid.0=0x0037 360 | micro.vid.1=0x2341 361 | micro.pid.1=0x8037 362 | micro.vid.2=0x2A03 363 | micro.pid.2=0x0037 364 | micro.vid.3=0x2A03 365 | micro.pid.3=0x8037 366 | micro.vid.4=0x2341 367 | micro.pid.4=0x0237 368 | micro.vid.5=0x2341 369 | micro.pid.5=0x8237 370 | 371 | micro.upload.tool=avrdude 372 | micro.upload.protocol=avr109 373 | micro.upload.maximum_size=28672 374 | micro.upload.maximum_data_size=2560 375 | micro.upload.speed=57600 376 | micro.upload.disable_flushing=true 377 | micro.upload.use_1200bps_touch=true 378 | micro.upload.wait_for_upload_port=true 379 | 380 | micro.bootloader.tool=avrdude 381 | micro.bootloader.low_fuses=0xff 382 | micro.bootloader.high_fuses=0xd8 383 | micro.bootloader.extended_fuses=0xcb 384 | micro.bootloader.file=caterina/Caterina-Micro.hex 385 | micro.bootloader.unlock_bits=0x3F 386 | micro.bootloader.lock_bits=0x2F 387 | 388 | micro.build.mcu=atmega32u4 389 | micro.build.f_cpu=16000000L 390 | micro.build.vid=0x1ccf 391 | micro.build.pid=0x8048 392 | micro.build.usb_product="beatmania IIDX 2P Controller" 393 | micro.build.board=AVR_MICRO 394 | micro.build.core=arduino 395 | micro.build.variant=micro 396 | micro.build.extra_flags={build.usb_flags} 397 | 398 | ############################################################## 399 | 400 | esplora.name=Arduino Esplora 401 | esplora.vid.0=0x2341 402 | esplora.pid.0=0x003C 403 | esplora.vid.1=0x2341 404 | esplora.pid.1=0x803C 405 | esplora.vid.2=0x2A03 406 | esplora.pid.2=0x003C 407 | esplora.vid.3=0x2A03 408 | esplora.pid.3=0x803C 409 | 410 | esplora.upload.tool=avrdude 411 | esplora.upload.protocol=avr109 412 | esplora.upload.maximum_size=28672 413 | esplora.upload.maximum_data_size=2560 414 | esplora.upload.speed=57600 415 | esplora.upload.disable_flushing=true 416 | esplora.upload.use_1200bps_touch=true 417 | esplora.upload.wait_for_upload_port=true 418 | 419 | esplora.bootloader.tool=avrdude 420 | esplora.bootloader.low_fuses=0xff 421 | esplora.bootloader.high_fuses=0xd8 422 | esplora.bootloader.extended_fuses=0xcb 423 | esplora.bootloader.file=caterina/Caterina-Esplora.hex 424 | esplora.bootloader.unlock_bits=0x3F 425 | esplora.bootloader.lock_bits=0x2F 426 | 427 | esplora.build.mcu=atmega32u4 428 | esplora.build.f_cpu=16000000L 429 | esplora.build.vid=0x2341 430 | esplora.build.pid=0x803c 431 | esplora.build.usb_product="Arduino Esplora" 432 | esplora.build.board=AVR_ESPLORA 433 | esplora.build.core=arduino 434 | esplora.build.variant=leonardo 435 | esplora.build.extra_flags={build.usb_flags} 436 | 437 | ############################################################## 438 | 439 | mini.name=Arduino Mini 440 | 441 | mini.upload.tool=avrdude 442 | mini.upload.protocol=arduino 443 | 444 | mini.bootloader.tool=avrdude 445 | mini.bootloader.low_fuses=0xff 446 | mini.bootloader.unlock_bits=0x3F 447 | mini.bootloader.lock_bits=0x0F 448 | 449 | mini.build.f_cpu=16000000L 450 | mini.build.board=AVR_MINI 451 | mini.build.core=arduino 452 | mini.build.variant=eightanaloginputs 453 | 454 | ## Arduino Mini w/ ATmega328P 455 | ## -------------------------- 456 | mini.menu.cpu.atmega328=ATmega328P 457 | 458 | mini.menu.cpu.atmega328.upload.maximum_size=28672 459 | mini.menu.cpu.atmega328.upload.maximum_data_size=2048 460 | mini.menu.cpu.atmega328.upload.speed=115200 461 | 462 | mini.menu.cpu.atmega328.bootloader.high_fuses=0xd8 463 | mini.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 464 | mini.menu.cpu.atmega328.bootloader.file=optiboot/optiboot_atmega328-Mini.hex 465 | 466 | mini.menu.cpu.atmega328.build.mcu=atmega328p 467 | 468 | ## Arduino Mini w/ ATmega168 469 | ## ------------------------- 470 | mini.menu.cpu.atmega168=ATmega168 471 | 472 | mini.menu.cpu.atmega168.upload.maximum_size=14336 473 | mini.menu.cpu.atmega168.upload.maximum_data_size=1024 474 | mini.menu.cpu.atmega168.upload.speed=19200 475 | 476 | mini.menu.cpu.atmega168.bootloader.high_fuses=0xdd 477 | mini.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 478 | mini.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_ng.hex 479 | 480 | mini.menu.cpu.atmega168.build.mcu=atmega168 481 | 482 | ############################################################## 483 | 484 | ethernet.name=Arduino Ethernet 485 | 486 | ethernet.upload.tool=avrdude 487 | ethernet.upload.protocol=arduino 488 | ethernet.upload.maximum_size=32256 489 | ethernet.upload.maximum_data_size=2048 490 | ethernet.upload.speed=115200 491 | 492 | ethernet.bootloader.tool=avrdude 493 | ethernet.bootloader.low_fuses=0xff 494 | ethernet.bootloader.high_fuses=0xde 495 | ethernet.bootloader.extended_fuses=0xFD 496 | ethernet.bootloader.file=optiboot/optiboot_atmega328.hex 497 | ethernet.bootloader.unlock_bits=0x3F 498 | ethernet.bootloader.lock_bits=0x0F 499 | 500 | ethernet.build.variant=ethernet 501 | ethernet.build.mcu=atmega328p 502 | ethernet.build.f_cpu=16000000L 503 | ethernet.build.board=AVR_ETHERNET 504 | ethernet.build.core=arduino 505 | 506 | ############################################################## 507 | 508 | fio.name=Arduino Fio 509 | 510 | fio.upload.tool=avrdude 511 | fio.upload.protocol=arduino 512 | fio.upload.maximum_size=30720 513 | fio.upload.maximum_data_size=2048 514 | fio.upload.speed=57600 515 | 516 | fio.bootloader.tool=avrdude 517 | fio.bootloader.low_fuses=0xFF 518 | fio.bootloader.high_fuses=0xDA 519 | fio.bootloader.extended_fuses=0xFD 520 | fio.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 521 | fio.bootloader.unlock_bits=0x3F 522 | fio.bootloader.lock_bits=0x0F 523 | 524 | fio.build.mcu=atmega328p 525 | fio.build.f_cpu=8000000L 526 | fio.build.board=AVR_FIO 527 | fio.build.core=arduino 528 | fio.build.variant=eightanaloginputs 529 | 530 | ############################################################## 531 | 532 | bt.name=Arduino BT 533 | 534 | bt.upload.tool=avrdude 535 | bt.upload.protocol=arduino 536 | bt.upload.speed=19200 537 | bt.upload.disable_flushing=true 538 | 539 | bt.bootloader.tool=avrdude 540 | bt.bootloader.low_fuses=0xff 541 | bt.bootloader.unlock_bits=0x3F 542 | bt.bootloader.lock_bits=0x0F 543 | 544 | bt.build.f_cpu=16000000L 545 | bt.build.board=AVR_BT 546 | bt.build.core=arduino 547 | bt.build.variant=eightanaloginputs 548 | 549 | ## Arduino BT w/ ATmega328P 550 | ## ------------------------ 551 | bt.menu.cpu.atmega328=ATmega328P 552 | bt.menu.cpu.atmega328.upload.maximum_size=28672 553 | bt.menu.cpu.atmega328.upload.maximum_data_size=2048 554 | 555 | bt.menu.cpu.atmega328.bootloader.high_fuses=0xd8 556 | bt.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 557 | bt.menu.cpu.atmega328.bootloader.file=bt/ATmegaBOOT_168_atmega328_bt.hex 558 | 559 | bt.menu.cpu.atmega328.build.mcu=atmega328p 560 | 561 | ## Arduino BT w/ ATmega168 562 | ## ----------------------- 563 | bt.menu.cpu.atmega168=ATmega168 564 | bt.menu.cpu.atmega168.upload.maximum_size=14336 565 | bt.menu.cpu.atmega168.upload.maximum_data_size=1024 566 | 567 | bt.menu.cpu.atmega168.bootloader.high_fuses=0xdd 568 | bt.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 569 | bt.menu.cpu.atmega168.bootloader.file=bt/ATmegaBOOT_168.hex 570 | 571 | bt.menu.cpu.atmega168.build.mcu=atmega168 572 | 573 | ############################################################## 574 | 575 | LilyPadUSB.name=LilyPad Arduino USB 576 | LilyPadUSB.vid.0=0x1B4F 577 | LilyPadUSB.pid.0=0x9207 578 | LilyPadUSB.vid.1=0x1B4F 579 | LilyPadUSB.pid.1=0x9208 580 | 581 | LilyPadUSB.upload.tool=avrdude 582 | LilyPadUSB.upload.protocol=avr109 583 | LilyPadUSB.upload.maximum_size=28672 584 | LilyPadUSB.upload.maximum_data_size=2560 585 | LilyPadUSB.upload.speed=57600 586 | LilyPadUSB.upload.disable_flushing=true 587 | LilyPadUSB.upload.use_1200bps_touch=true 588 | LilyPadUSB.upload.wait_for_upload_port=true 589 | 590 | LilyPadUSB.bootloader.tool=avrdude 591 | LilyPadUSB.bootloader.low_fuses=0xff 592 | LilyPadUSB.bootloader.high_fuses=0xd8 593 | LilyPadUSB.bootloader.extended_fuses=0xce 594 | LilyPadUSB.bootloader.file=caterina-LilyPadUSB/Caterina-LilyPadUSB.hex 595 | LilyPadUSB.bootloader.unlock_bits=0x3F 596 | LilyPadUSB.bootloader.lock_bits=0x2F 597 | 598 | LilyPadUSB.build.mcu=atmega32u4 599 | LilyPadUSB.build.f_cpu=8000000L 600 | LilyPadUSB.build.vid=0x1B4F 601 | LilyPadUSB.build.pid=0x9208 602 | LilyPadUSB.build.usb_product="LilyPad USB" 603 | LilyPadUSB.build.board=AVR_LILYPAD_USB 604 | LilyPadUSB.build.core=arduino 605 | LilyPadUSB.build.variant=leonardo 606 | LilyPadUSB.build.extra_flags={build.usb_flags} 607 | 608 | ############################################################## 609 | 610 | lilypad.name=LilyPad Arduino 611 | 612 | lilypad.upload.tool=avrdude 613 | lilypad.upload.protocol=arduino 614 | 615 | lilypad.bootloader.tool=avrdude 616 | lilypad.bootloader.unlock_bits=0x3F 617 | lilypad.bootloader.lock_bits=0x0F 618 | 619 | lilypad.build.f_cpu=8000000L 620 | lilypad.build.board=AVR_LILYPAD 621 | lilypad.build.core=arduino 622 | lilypad.build.variant=standard 623 | 624 | ## LilyPad Arduino w/ ATmega328P 625 | ## ----------------------------- 626 | lilypad.menu.cpu.atmega328=ATmega328P 627 | 628 | lilypad.menu.cpu.atmega328.upload.maximum_size=30720 629 | lilypad.menu.cpu.atmega328.upload.maximum_data_size=2048 630 | lilypad.menu.cpu.atmega328.upload.speed=57600 631 | 632 | lilypad.menu.cpu.atmega328.bootloader.low_fuses=0xFF 633 | lilypad.menu.cpu.atmega328.bootloader.high_fuses=0xDA 634 | lilypad.menu.cpu.atmega328.bootloader.extended_fuses=0xFD 635 | lilypad.menu.cpu.atmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 636 | 637 | lilypad.menu.cpu.atmega328.build.mcu=atmega328p 638 | 639 | ## LilyPad Arduino w/ ATmega168 640 | ## ---------------------------- 641 | lilypad.menu.cpu.atmega168=ATmega168 642 | 643 | lilypad.menu.cpu.atmega168.upload.maximum_size=14336 644 | lilypad.menu.cpu.atmega168.upload.maximum_data_size=1024 645 | lilypad.menu.cpu.atmega168.upload.speed=19200 646 | 647 | lilypad.menu.cpu.atmega168.bootloader.low_fuses=0xe2 648 | lilypad.menu.cpu.atmega168.bootloader.high_fuses=0xdd 649 | lilypad.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 650 | lilypad.menu.cpu.atmega168.bootloader.file=lilypad/LilyPadBOOT_168.hex 651 | 652 | lilypad.menu.cpu.atmega168.build.mcu=atmega168 653 | 654 | ############################################################## 655 | 656 | pro.name=Arduino Pro or Pro Mini 657 | 658 | pro.upload.tool=avrdude 659 | pro.upload.protocol=arduino 660 | 661 | pro.bootloader.tool=avrdude 662 | pro.bootloader.unlock_bits=0x3F 663 | pro.bootloader.lock_bits=0x0F 664 | 665 | pro.build.board=AVR_PRO 666 | pro.build.core=arduino 667 | pro.build.variant=eightanaloginputs 668 | 669 | ## Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega328P 670 | ## -------------------------------------------------- 671 | pro.menu.cpu.16MHzatmega328=ATmega328P (5V, 16 MHz) 672 | 673 | pro.menu.cpu.16MHzatmega328.upload.maximum_size=30720 674 | pro.menu.cpu.16MHzatmega328.upload.maximum_data_size=2048 675 | pro.menu.cpu.16MHzatmega328.upload.speed=57600 676 | 677 | pro.menu.cpu.16MHzatmega328.bootloader.low_fuses=0xFF 678 | pro.menu.cpu.16MHzatmega328.bootloader.high_fuses=0xDA 679 | pro.menu.cpu.16MHzatmega328.bootloader.extended_fuses=0xFD 680 | pro.menu.cpu.16MHzatmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328.hex 681 | 682 | pro.menu.cpu.16MHzatmega328.build.mcu=atmega328p 683 | pro.menu.cpu.16MHzatmega328.build.f_cpu=16000000L 684 | 685 | ## Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega328P 686 | ## --------------------------------------------------- 687 | pro.menu.cpu.8MHzatmega328=ATmega328P (3.3V, 8 MHz) 688 | 689 | pro.menu.cpu.8MHzatmega328.upload.maximum_size=30720 690 | pro.menu.cpu.8MHzatmega328.upload.maximum_data_size=2048 691 | pro.menu.cpu.8MHzatmega328.upload.speed=57600 692 | 693 | pro.menu.cpu.8MHzatmega328.bootloader.low_fuses=0xFF 694 | pro.menu.cpu.8MHzatmega328.bootloader.high_fuses=0xDA 695 | pro.menu.cpu.8MHzatmega328.bootloader.extended_fuses=0xFD 696 | pro.menu.cpu.8MHzatmega328.bootloader.file=atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex 697 | 698 | pro.menu.cpu.8MHzatmega328.build.mcu=atmega328p 699 | pro.menu.cpu.8MHzatmega328.build.f_cpu=8000000L 700 | 701 | ## Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega168 702 | ## ------------------------------------------------- 703 | pro.menu.cpu.16MHzatmega168=ATmega168 (5V, 16 MHz) 704 | 705 | pro.menu.cpu.16MHzatmega168.upload.maximum_size=14336 706 | pro.menu.cpu.16MHzatmega168.upload.maximum_data_size=1024 707 | pro.menu.cpu.16MHzatmega168.upload.speed=19200 708 | 709 | pro.menu.cpu.16MHzatmega168.bootloader.low_fuses=0xff 710 | pro.menu.cpu.16MHzatmega168.bootloader.high_fuses=0xdd 711 | pro.menu.cpu.16MHzatmega168.bootloader.extended_fuses=0xF8 712 | pro.menu.cpu.16MHzatmega168.bootloader.file=atmega/ATmegaBOOT_168_diecimila.hex 713 | 714 | pro.menu.cpu.16MHzatmega168.build.mcu=atmega168 715 | pro.menu.cpu.16MHzatmega168.build.f_cpu=16000000L 716 | 717 | ## Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega168 718 | ## -------------------------------------------------- 719 | pro.menu.cpu.8MHzatmega168=ATmega168 (3.3V, 8 MHz) 720 | 721 | pro.menu.cpu.8MHzatmega168.upload.maximum_size=14336 722 | pro.menu.cpu.8MHzatmega168.upload.maximum_data_size=1024 723 | pro.menu.cpu.8MHzatmega168.upload.speed=19200 724 | 725 | pro.menu.cpu.8MHzatmega168.bootloader.low_fuses=0xc6 726 | pro.menu.cpu.8MHzatmega168.bootloader.high_fuses=0xdd 727 | pro.menu.cpu.8MHzatmega168.bootloader.extended_fuses=0xF8 728 | pro.menu.cpu.8MHzatmega168.bootloader.file=atmega/ATmegaBOOT_168_pro_8MHz.hex 729 | 730 | pro.menu.cpu.8MHzatmega168.build.mcu=atmega168 731 | pro.menu.cpu.8MHzatmega168.build.f_cpu=8000000L 732 | 733 | ############################################################## 734 | 735 | atmegang.name=Arduino NG or older 736 | 737 | atmegang.upload.tool=avrdude 738 | atmegang.upload.protocol=arduino 739 | atmegang.upload.speed=19200 740 | 741 | atmegang.bootloader.tool=avrdude 742 | atmegang.bootloader.unlock_bits=0x3F 743 | atmegang.bootloader.lock_bits=0x0F 744 | 745 | atmegang.build.mcu=atmegang 746 | atmegang.build.f_cpu=16000000L 747 | atmegang.build.board=AVR_NG 748 | atmegang.build.core=arduino 749 | atmegang.build.variant=standard 750 | 751 | ## Arduino NG or older w/ ATmega168 752 | ## -------------------------------- 753 | atmegang.menu.cpu.atmega168=ATmega168 754 | 755 | atmegang.menu.cpu.atmega168.upload.maximum_size=14336 756 | atmegang.menu.cpu.atmega168.upload.maximum_data_size=1024 757 | 758 | atmegang.menu.cpu.atmega168.bootloader.low_fuses=0xff 759 | atmegang.menu.cpu.atmega168.bootloader.high_fuses=0xdd 760 | atmegang.menu.cpu.atmega168.bootloader.extended_fuses=0xF8 761 | atmegang.menu.cpu.atmega168.bootloader.file=atmega/ATmegaBOOT_168_ng.hex 762 | 763 | atmegang.menu.cpu.atmega168.build.mcu=atmega168 764 | 765 | ## Arduino NG or older w/ ATmega8 766 | ## ------------------------------ 767 | atmegang.menu.cpu.atmega8=ATmega8 768 | 769 | atmegang.menu.cpu.atmega8.upload.maximum_size=7168 770 | atmegang.menu.cpu.atmega8.upload.maximum_data_size=1024 771 | 772 | atmegang.menu.cpu.atmega8.bootloader.low_fuses=0xdf 773 | atmegang.menu.cpu.atmega8.bootloader.high_fuses=0xca 774 | atmegang.menu.cpu.atmega8.bootloader.extended_fuses= 775 | atmegang.menu.cpu.atmega8.bootloader.file=atmega8/ATmegaBOOT-prod-firmware-2009-11-07.hex 776 | 777 | atmegang.menu.cpu.atmega8.build.mcu=atmega8 778 | 779 | ############################################################## 780 | 781 | robotControl.name=Arduino Robot Control 782 | robotControl.vid.0=0x2341 783 | robotControl.pid.0=0x0038 784 | robotControl.vid.1=0x2341 785 | robotControl.pid.1=0x8038 786 | robotControl.vid.2=0x2A03 787 | robotControl.pid.2=0x0038 788 | robotControl.vid.3=0x2A03 789 | robotControl.pid.3=0x8038 790 | 791 | robotControl.upload.tool=avrdude 792 | robotControl.upload.protocol=avr109 793 | robotControl.upload.maximum_size=28672 794 | robotControl.upload.maximum_data_size=2560 795 | robotControl.upload.speed=57600 796 | robotControl.upload.disable_flushing=true 797 | robotControl.upload.use_1200bps_touch=true 798 | robotControl.upload.wait_for_upload_port=true 799 | 800 | robotControl.bootloader.tool=avrdude 801 | robotControl.bootloader.low_fuses=0xff 802 | robotControl.bootloader.high_fuses=0xd8 803 | robotControl.bootloader.extended_fuses=0xcb 804 | robotControl.bootloader.file=caterina-Arduino_Robot/Caterina-Robot-Control.hex 805 | robotControl.bootloader.unlock_bits=0x3F 806 | robotControl.bootloader.lock_bits=0x2F 807 | 808 | robotControl.build.mcu=atmega32u4 809 | robotControl.build.f_cpu=16000000L 810 | robotControl.build.vid=0x2341 811 | robotControl.build.pid=0x8038 812 | robotControl.build.usb_product="Robot Control" 813 | robotControl.build.board=AVR_ROBOT_CONTROL 814 | robotControl.build.core=arduino 815 | robotControl.build.variant=robot_control 816 | robotControl.build.extra_flags={build.usb_flags} 817 | 818 | ############################################################## 819 | 820 | robotMotor.name=Arduino Robot Motor 821 | robotMotor.vid.0=0x2341 822 | robotMotor.pid.0=0x0039 823 | robotMotor.vid.1=0x2341 824 | robotMotor.pid.1=0x8039 825 | robotMotor.vid.2=0x2A03 826 | robotMotor.pid.2=0x0039 827 | robotMotor.vid.3=0x2A03 828 | robotMotor.pid.3=0x8039 829 | 830 | robotMotor.upload.tool=avrdude 831 | robotMotor.upload.protocol=avr109 832 | robotMotor.upload.maximum_size=28672 833 | robotMotor.upload.maximum_data_size=2560 834 | robotMotor.upload.speed=57600 835 | robotMotor.upload.disable_flushing=true 836 | robotMotor.upload.use_1200bps_touch=true 837 | robotMotor.upload.wait_for_upload_port=true 838 | 839 | robotMotor.bootloader.tool=avrdude 840 | robotMotor.bootloader.low_fuses=0xff 841 | robotMotor.bootloader.high_fuses=0xd8 842 | robotMotor.bootloader.extended_fuses=0xcb 843 | robotMotor.bootloader.file=caterina-Arduino_Robot/Caterina-Robot-Motor.hex 844 | robotMotor.bootloader.unlock_bits=0x3F 845 | robotMotor.bootloader.lock_bits=0x2F 846 | 847 | robotMotor.build.mcu=atmega32u4 848 | robotMotor.build.f_cpu=16000000L 849 | robotMotor.build.vid=0x2341 850 | robotMotor.build.pid=0x8039 851 | robotMotor.build.usb_product="Robot Motor" 852 | robotMotor.build.board=AVR_ROBOT_MOTOR 853 | robotMotor.build.core=arduino 854 | robotMotor.build.variant=robot_motor 855 | robotMotor.build.extra_flags={build.usb_flags} 856 | 857 | ############################################################## 858 | 859 | gemma.vid.0=0x2341 860 | gemma.pid.0=0x0c9f 861 | 862 | gemma.name=Arduino Gemma 863 | 864 | gemma.bootloader.low_fuses=0xF1 865 | gemma.bootloader.high_fuses=0xD5 866 | gemma.bootloader.extended_fuses=0xFE 867 | gemma.bootloader.tool=avrdude 868 | gemma.bootloader.lock_bits= 869 | gemma.bootloader.unlock_bits= 870 | gemma.bootloader.file=gemma/gemma_v1.hex 871 | 872 | gemma.build.mcu=attiny85 873 | gemma.build.f_cpu=8000000L 874 | gemma.build.core=arduino 875 | gemma.build.variant=gemma 876 | gemma.build.board=AVR_GEMMA 877 | 878 | gemma.upload.tool=avrdude 879 | gemma.upload.maximum_size=5310 880 | 881 | ############################################################## 882 | 883 | # Adafruit Circuit Playground 32u4 w/Caterina Configuration 884 | circuitplay32u4cat.name=Adafruit Circuit Playground 885 | circuitplay32u4cat.bootloader.low_fuses=0xff 886 | circuitplay32u4cat.bootloader.high_fuses=0xd8 887 | circuitplay32u4cat.bootloader.extended_fuses=0xcb 888 | circuitplay32u4cat.bootloader.file=caterina/Caterina-Circuitplay32u4.hex 889 | circuitplay32u4cat.bootloader.unlock_bits=0x3F 890 | circuitplay32u4cat.bootloader.lock_bits=0x2F 891 | circuitplay32u4cat.bootloader.tool=avrdude 892 | circuitplay32u4cat.build.mcu=atmega32u4 893 | circuitplay32u4cat.build.f_cpu=8000000L 894 | circuitplay32u4cat.build.vid=0x239A 895 | circuitplay32u4cat.build.pid=0x8011 896 | circuitplay32u4cat.build.core=arduino 897 | circuitplay32u4cat.build.variant=circuitplay32u4 898 | circuitplay32u4cat.build.board=AVR_CIRCUITPLAY 899 | circuitplay32u4cat.build.usb_product="Circuit Playground" 900 | circuitplay32u4cat.build.usb_manufacturer="Adafruit" 901 | circuitplay32u4cat.build.extra_flags={build.usb_flags} 902 | circuitplay32u4cat.upload.protocol=avr109 903 | circuitplay32u4cat.upload.maximum_size=28672 904 | circuitplay32u4cat.upload.speed=57600 905 | circuitplay32u4cat.upload.disable_flushing=true 906 | circuitplay32u4cat.upload.use_1200bps_touch=true 907 | circuitplay32u4cat.upload.wait_for_upload_port=true 908 | circuitplay32u4cat.upload.tool=avrdude 909 | circuitplay32u4cat.vid.0=0x239A 910 | circuitplay32u4cat.pid.0=0x8011 911 | 912 | ############################################################## 913 | 914 | yunmini.name=Arduino Yún Mini 915 | yunmini.upload.via_ssh=true 916 | 917 | yunmini.vid.0=0x2a03 918 | yunmini.pid.0=0x0050 919 | yunmini.vid.1=0x2a03 920 | yunmini.pid.1=0x8050 921 | 922 | yunmini.upload.tool=avrdude 923 | yunmini.upload.protocol=avr109 924 | yunmini.upload.maximum_size=28672 925 | yunmini.upload.maximum_data_size=2560 926 | yunmini.upload.speed=57600 927 | yunmini.upload.disable_flushing=true 928 | yunmini.upload.use_1200bps_touch=true 929 | yunmini.upload.wait_for_upload_port=true 930 | 931 | yunmini.bootloader.tool=avrdude 932 | yunmini.bootloader.low_fuses=0xff 933 | yunmini.bootloader.high_fuses=0xd8 934 | yunmini.bootloader.extended_fuses=0xfb 935 | yunmini.bootloader.file=caterina/Caterina-YunMini.hex 936 | yunmini.bootloader.unlock_bits=0x3F 937 | yunmini.bootloader.lock_bits=0x2F 938 | 939 | yunmini.build.mcu=atmega32u4 940 | yunmini.build.f_cpu=16000000L 941 | yunmini.build.vid=0x2a03 942 | yunmini.build.pid=0x8050 943 | yunmini.build.usb_product="Arduino Yún Mini" 944 | yunmini.build.board=AVR_YUNMINI 945 | yunmini.build.core=arduino 946 | yunmini.build.variant=yun 947 | yunmini.build.extra_flags={build.usb_flags} 948 | 949 | ############################################################## 950 | 951 | chiwawa.name=Arduino Industrial 101 952 | chiwawa.upload.via_ssh=true 953 | 954 | chiwawa.vid.0=0x2a03 955 | chiwawa.pid.0=0x0056 956 | chiwawa.vid.1=0x2a03 957 | chiwawa.pid.1=0x8056 958 | 959 | chiwawa.upload.tool=avrdude 960 | chiwawa.upload.protocol=avr109 961 | chiwawa.upload.maximum_size=28672 962 | chiwawa.upload.maximum_data_size=2560 963 | chiwawa.upload.speed=57600 964 | chiwawa.upload.disable_flushing=true 965 | chiwawa.upload.use_1200bps_touch=true 966 | chiwawa.upload.wait_for_upload_port=true 967 | 968 | chiwawa.bootloader.tool=avrdude 969 | chiwawa.bootloader.low_fuses=0xff 970 | chiwawa.bootloader.high_fuses=0xd8 971 | chiwawa.bootloader.extended_fuses=0xfb 972 | chiwawa.bootloader.file=caterina/Caterina-Industrial101.hex 973 | chiwawa.bootloader.unlock_bits=0x3F 974 | chiwawa.bootloader.lock_bits=0x2F 975 | 976 | chiwawa.build.mcu=atmega32u4 977 | chiwawa.build.f_cpu=16000000L 978 | chiwawa.build.vid=0x2a03 979 | chiwawa.build.pid=0x8056 980 | chiwawa.build.usb_product="Arduino Industrial 101" 981 | chiwawa.build.board=AVR_INDUSTRIAL101 982 | chiwawa.build.core=arduino 983 | chiwawa.build.variant=yun 984 | chiwawa.build.extra_flags={build.usb_flags} 985 | 986 | ############################################################## 987 | 988 | one.name=Linino One 989 | one.upload.via_ssh=true 990 | 991 | one.vid.0=0x2a03 992 | one.pid.0=0x0001 993 | one.vid.1=0x2a03 994 | one.pid.1=0x8001 995 | 996 | one.upload.tool=avrdude 997 | one.upload.protocol=avr109 998 | one.upload.maximum_size=28672 999 | one.upload.maximum_data_size=2560 1000 | one.upload.speed=57600 1001 | one.upload.disable_flushing=true 1002 | one.upload.use_1200bps_touch=true 1003 | one.upload.wait_for_upload_port=true 1004 | 1005 | one.bootloader.tool=avrdude 1006 | one.bootloader.low_fuses=0xff 1007 | one.bootloader.high_fuses=0xd8 1008 | one.bootloader.extended_fuses=0xfb 1009 | one.bootloader.file=caterina/Caterina-LininoOne.hex 1010 | one.bootloader.unlock_bits=0x3F 1011 | one.bootloader.lock_bits=0x2F 1012 | 1013 | one.build.mcu=atmega32u4 1014 | one.build.f_cpu=16000000L 1015 | one.build.vid=0x2a03 1016 | one.build.pid=0x8001 1017 | one.build.usb_product="Linino One" 1018 | one.build.board=AVR_LININO_ONE 1019 | one.build.core=arduino 1020 | one.build.variant=yun 1021 | one.build.extra_flags={build.usb_flags} 1022 | 1023 | ############################################################## 1024 | 1025 | unowifi.name=Arduino Uno WiFi 1026 | unowifi.vid.0=0x2A03 1027 | unowifi.pid.0=0x0057 1028 | 1029 | unowifi.upload.tool=avrdude 1030 | unowifi.upload.protocol=arduino 1031 | unowifi.upload.maximum_size=32256 1032 | unowifi.upload.maximum_data_size=2048 1033 | unowifi.upload.speed=115200 1034 | unowifi.upload.network.endpoint_upload=/pgm/upload 1035 | unowifi.upload.network.endpoint_sync=/pgm/sync 1036 | unowifi.upload.network.sync_return=204:SYNC 1037 | unowifi.upload.network.endpoint_reset=/log/reset 1038 | unowifi.upload.network.port=80 1039 | 1040 | unowifi.bootloader.tool=avrdude 1041 | unowifi.bootloader.low_fuses=0xFF 1042 | unowifi.bootloader.high_fuses=0xDE 1043 | unowifi.bootloader.extended_fuses=0x05 1044 | unowifi.bootloader.unlock_bits=0x3F 1045 | unowifi.bootloader.lock_bits=0x0F 1046 | unowifi.bootloader.file=optiboot/optiboot_atmega328.hex 1047 | 1048 | unowifi.build.mcu=atmega328p 1049 | unowifi.build.f_cpu=16000000L 1050 | unowifi.build.board=AVR_UNO_WIFI_DEV_ED 1051 | unowifi.build.core=arduino 1052 | unowifi.build.variant=standard 1053 | unowifi.build.esp_ch_uart_br=19200 1054 | unowifi.build.extra_flags=-DESP_CH_UART -DESP_CH_UART_BR={build.esp_ch_uart_br} 1055 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------