├── .gitignore ├── LICENSE ├── Mind+.pro ├── Mind+.pro.user ├── Mind+.pro.user.2.5pre1 ├── README.md ├── extra ├── BBList.csv ├── Linkage.csv ├── Parameter.csv └── ico.rc ├── libraries ├── CompleteLineEdit │ ├── CompleteLineEdit.cpp │ ├── CompleteLineEdit.h │ └── CompleteLineEdit.pri └── QExtserialport │ ├── qextserialenumerator.cpp │ ├── qextserialenumerator.h │ ├── qextserialenumerator_osx.cpp │ ├── qextserialenumerator_p.h │ ├── qextserialenumerator_unix.cpp │ ├── qextserialenumerator_win.cpp │ ├── qextserialport.cpp │ ├── qextserialport.h │ ├── qextserialport.pri │ ├── qextserialport_global.h │ ├── qextserialport_p.h │ ├── qextserialport_unix.cpp │ ├── qextserialport_win.cpp │ ├── qextwineventnotifier_p.cpp │ └── qextwineventnotifier_p.h ├── object_script.mp.Release ├── resource ├── Blocks │ ├── .DS_Store │ ├── BasicSensor │ │ ├── AnalogRead.mpb │ │ ├── AnalogTrigger.mpb │ │ ├── AnalogWrite.mpb │ │ ├── Blink.mpb │ │ ├── DigitalRead.mpb │ │ └── DigitalWrite.mpb │ ├── Buffer.mpb │ ├── Capacitive │ │ ├── CapacitiveSensor.mpb │ │ └── CapacitiveTrigger.mpb │ ├── Convert │ │ └── Map.mpb │ ├── Flow │ │ ├── IF.mpb │ │ ├── Repeat.mpb │ │ └── Switch.mpb │ ├── Gyro │ │ └── FreeSixIMU.mpb │ ├── HID │ │ └── KeyboardSimulate.mpb │ ├── IR Remote │ │ ├── IRReceiverSetup.mpb │ │ ├── IRReceiverWaiter.mpb │ │ └── IRSendCode.mpb │ ├── LCD │ │ ├── I2C │ │ │ ├── LCD1602PrecessBarI2C.mpb │ │ │ ├── LCD1602ShowNumberI2C.mpb │ │ │ └── LCD1602ShowTextI2C.mpb │ │ ├── LCD1602SetupPin.mpb │ │ └── LCD1602ShowText.mpb │ ├── LED Matrix │ │ └── EasyLEDMatrix.mpb │ ├── Math │ │ ├── Boolean │ │ │ ├── BooleanSwitch.mpb │ │ │ └── SetBoolean.mpb │ │ ├── MathIntAbs.mpb │ │ ├── MathIntAdd.mpb │ │ ├── MathIntDivision.mpb │ │ ├── MathIntMultiplication.mpb │ │ ├── MathIntRandom.mpb │ │ └── MathIntSubduction.mpb │ ├── Mind+Kit │ │ ├── KitButton.mpb │ │ ├── KitBuzzer.mpb │ │ ├── KitIRReceiver.mpb │ │ ├── KitLED.mpb │ │ ├── KitRotationSensor.mpb │ │ └── KitServo.mpb │ ├── Moto │ │ ├── MotoShield.mpb │ │ └── MotoShieldValue.mpb │ ├── Network │ │ ├── EthernetShieldSetup.mpb │ │ ├── EthernetShieldWaitData.mpb │ │ ├── WifiShieldSetup.mpb │ │ └── YeelinkUploadData.mpb │ ├── OBD │ │ └── EasyOBDSpeed.mpb │ ├── Serial │ │ ├── SendEvent.mpb │ │ ├── SendNumber.mpb │ │ ├── SetBaudRate.mpb │ │ ├── WaitEvent.mpb │ │ └── WaitNumber.mpb │ ├── Servo │ │ ├── ServoTurn.mpb │ │ └── SetServoAngle.mpb │ ├── Sound │ │ ├── Speaker.mpb │ │ └── Tone.mpb │ ├── Temperature │ │ ├── DHT11.mpb │ │ └── LM35.mpb │ ├── Time │ │ ├── CurveGenerator.mpb │ │ ├── Delay.mpb │ │ ├── LineGenerator.mpb │ │ └── Timer.mpb │ └── buffer.dll ├── fonts │ └── Windows │ │ ├── Intro.otf │ │ ├── NexaBold.otf │ │ ├── NexaLight.otf │ │ ├── msyh.ttc │ │ ├── raleway_thin.otf │ │ └── raleway_thin.ttf ├── images.qrc ├── images │ ├── .DS_Store │ ├── AutoUpdate │ │ ├── ico.png │ │ └── upgrader_background.png │ ├── BeginnerToolbar │ │ ├── BeginnerToolbar_Button.png │ │ ├── BeginnerToolbar_Delay.png │ │ ├── BeginnerToolbar_IRRemote.png │ │ ├── BeginnerToolbar_LED.png │ │ ├── BeginnerToolbar_LM35.png │ │ ├── BeginnerToolbar_RotationSensor.png │ │ ├── BeginnerToolbar_Servo.png │ │ ├── BeginnerToolbar_Speaker.png │ │ ├── BeginnerToolbar_SplitLine.png │ │ ├── BeginnerToolbar_Switch.png │ │ └── BeginnerToolbar_Triger.png │ ├── bb │ │ ├── JumpToStart_idle.png │ │ ├── Start.png │ │ ├── UI_Block_BG.png │ │ ├── UI_Block_BI.png │ │ ├── UI_Block_BI_Over.png │ │ ├── UI_Block_BO.png │ │ ├── UI_Block_Pin.png │ │ └── UI_Block_Pin_Over.png │ ├── bb_classify │ │ ├── AdvIO.png │ │ ├── AnalogIO.png │ │ ├── Arrow.png │ │ ├── Bluetooth.png │ │ ├── DigitalIO.png │ │ ├── Ethernet.png │ │ ├── Flow.png │ │ ├── LCD.png │ │ ├── Locks.png │ │ ├── Math.png │ │ ├── Servo.png │ │ ├── Storager.png │ │ ├── Time.png │ │ ├── Unknown.png │ │ ├── UserBlock.png │ │ ├── blackwithblueline.png │ │ ├── mindkit.png │ │ ├── moto.png │ │ ├── roll_down.png │ │ └── roll_up.png │ ├── bb_mind_kit │ │ ├── kit_Arrow.png │ │ ├── kit_Button.png │ │ ├── kit_Buzzer.png │ │ ├── kit_CloseSensor.png │ │ ├── kit_IRRec.png │ │ ├── kit_LED.png │ │ ├── kit_LightSensor.png │ │ ├── kit_Refc.png │ │ ├── kit_RotationSensor.png │ │ └── kit_Servo.png │ ├── common │ │ ├── Back.png │ │ ├── Back_black.png │ │ ├── BackgroundGird.png │ │ ├── Blocks_All.png │ │ ├── Blocks_All_o.png │ │ ├── Blocks_All_p.png │ │ ├── Blocks_Begin.png │ │ ├── Blocks_Begin_o.png │ │ ├── Blocks_Begin_p.png │ │ ├── Cursor.png │ │ ├── LinePen.png │ │ ├── Title.png │ │ ├── Transparent_Black_70.png │ │ ├── Transparent_Black_80.png │ │ ├── Transparent_Black_90.png │ │ ├── Transparent_White_70.png │ │ ├── Transparent_White_80.png │ │ ├── Transparent_White_90.png │ │ ├── roll_down.png │ │ ├── roll_up.png │ │ ├── transparentCursor.png │ │ └── wait.png │ ├── icon │ │ ├── v095_logo_macx.icns │ │ ├── v095_logo_win32.ico │ │ ├── v095_logop.ico │ │ ├── v095_logop_10_16x16x32.png │ │ ├── v095_logop_128x128x32.png │ │ ├── v095_logop_4_48x48x8.png │ │ ├── v095_logop_5_32x32x8.png │ │ ├── v095_logop_7_256x256x32.png │ │ ├── v095_logop_8_48x48x32.png │ │ └── v095_logop_9_32x32x32.png │ ├── left_area │ │ ├── AllBlocks.png │ │ ├── AllBlocks_over.png │ │ ├── LeftToolBar_Shadow.png │ │ ├── LeftToolBar_user.png │ │ ├── LeftToolBar_user_OVER.png │ │ └── Logo.png │ ├── parameter_input │ │ ├── AnalogPin │ │ │ ├── ArduinoUNO_Analog.png │ │ │ └── SelectBox.png │ │ ├── CurveProgression │ │ │ ├── CurveProgression_BG.png │ │ │ └── CurveProgression_Icon.png │ │ ├── DigitalPin │ │ │ └── ArduinoUNO_Digital.png │ │ ├── LED_Matrix │ │ │ ├── ParameterSetup_8x8LED_Dark.png │ │ │ ├── ParameterSetup_8x8LED_Single.png │ │ │ └── ParameterSetup_8x8LED_Single_Dark.png │ │ └── Normal │ │ │ ├── Background.png │ │ │ ├── Background_Empty.png │ │ │ └── Preview.png │ ├── startup │ │ ├── startupIMG_1.png │ │ ├── startupIMG_10.png │ │ ├── startupIMG_11.png │ │ ├── startupIMG_12.png │ │ ├── startupIMG_13.png │ │ ├── startupIMG_14.png │ │ ├── startupIMG_15.png │ │ ├── startupIMG_16.png │ │ ├── startupIMG_17.png │ │ ├── startupIMG_18.png │ │ ├── startupIMG_19.png │ │ ├── startupIMG_2.png │ │ ├── startupIMG_20.png │ │ ├── startupIMG_21.png │ │ ├── startupIMG_22.png │ │ ├── startupIMG_23.png │ │ ├── startupIMG_24.png │ │ ├── startupIMG_25.png │ │ ├── startupIMG_26.png │ │ ├── startupIMG_27.png │ │ ├── startupIMG_28.png │ │ ├── startupIMG_29.png │ │ ├── startupIMG_3.png │ │ ├── startupIMG_30.png │ │ ├── startupIMG_31.png │ │ ├── startupIMG_32.png │ │ ├── startupIMG_33.png │ │ ├── startupIMG_34.png │ │ ├── startupIMG_35.png │ │ ├── startupIMG_36.png │ │ ├── startupIMG_37.png │ │ ├── startupIMG_38.png │ │ ├── startupIMG_39.png │ │ ├── startupIMG_4.png │ │ ├── startupIMG_40.png │ │ ├── startupIMG_41.png │ │ ├── startupIMG_42.png │ │ ├── startupIMG_43.png │ │ ├── startupIMG_44.png │ │ ├── startupIMG_45.png │ │ ├── startupIMG_46.png │ │ ├── startupIMG_47.png │ │ ├── startupIMG_48.png │ │ ├── startupIMG_49.png │ │ ├── startupIMG_5.png │ │ ├── startupIMG_50.png │ │ ├── startupIMG_51.png │ │ ├── startupIMG_52.png │ │ ├── startupIMG_53.png │ │ ├── startupIMG_54.png │ │ ├── startupIMG_55.png │ │ ├── startupIMG_56.png │ │ ├── startupIMG_57.png │ │ ├── startupIMG_58.png │ │ ├── startupIMG_59.png │ │ ├── startupIMG_6.png │ │ ├── startupIMG_60.png │ │ ├── startupIMG_61.png │ │ ├── startupIMG_62.png │ │ ├── startupIMG_63.png │ │ ├── startupIMG_64.png │ │ ├── startupIMG_65.png │ │ ├── startupIMG_66.png │ │ ├── startupIMG_67.png │ │ ├── startupIMG_68.png │ │ ├── startupIMG_7.png │ │ ├── startupIMG_8.png │ │ └── startupIMG_9.png │ ├── title │ │ ├── .DS_Store │ │ ├── Title.png │ │ ├── Title_DividingLine.png │ │ ├── Title_close.png │ │ ├── Title_close_OVER.png │ │ ├── Title_maximize.png │ │ ├── Title_maximize_OVER.png │ │ ├── Title_minimize.png │ │ ├── Title_minimize_OVER.png │ │ ├── TopToolBar_About.png │ │ └── titlebg.png │ ├── tool_area │ │ ├── .DS_Store │ │ ├── TopToolBar_Serial.png │ │ ├── TopToolBar_SplitLine.png │ │ ├── TopToolBar_del.png │ │ ├── TopToolBar_del_over.png │ │ ├── TopToolBar_new.png │ │ ├── TopToolBar_open.png │ │ ├── TopToolBar_save.png │ │ ├── TopToolBar_setting.png │ │ └── TopToolBar_upload.png │ ├── upload │ │ ├── .DS_Store │ │ ├── Upload_ProcessBar.png │ │ ├── done.png │ │ ├── done_OVER.png │ │ ├── done_OVER_White.png │ │ └── error.png │ └── upload_setting │ │ ├── .DS_Store │ │ ├── Back.png │ │ ├── Done.png │ │ ├── Done_OVER.png │ │ ├── Done_Sample.png │ │ ├── MiniLeonardo.png │ │ ├── MiniUno.png │ │ ├── UploadSettingForm.png │ │ └── tips.png ├── plugins │ ├── codecs │ │ ├── qcncodecs4.dll │ │ ├── qcncodecsd4.dll │ │ ├── qjpcodecs4.dll │ │ ├── qjpcodecsd4.dll │ │ ├── qkrcodecs4.dll │ │ ├── qkrcodecsd4.dll │ │ ├── qtwcodecs4.dll │ │ └── qtwcodecsd4.dll │ ├── designer │ │ ├── arthurplugin.dll │ │ ├── containerextension.dll │ │ ├── containerextensiond.dll │ │ ├── customwidgetplugin.dll │ │ ├── phononwidgets.dll │ │ ├── qaxwidget.dll │ │ ├── qdeclarativeview.dll │ │ ├── qt3supportwidgets.dll │ │ ├── qwebview.dll │ │ ├── taskmenuextension.dll │ │ ├── taskmenuextensiond.dll │ │ └── worldtimeclockplugin.dll │ ├── graphicssystems │ │ ├── qglgraphicssystem4.dll │ │ └── qtracegraphicssystem4.dll │ ├── iconengines │ │ └── qsvgicon4.dll │ ├── imageformats │ │ ├── qgif4.dll │ │ ├── qico4.dll │ │ ├── qjpeg4.dll │ │ ├── qmng4.dll │ │ ├── qsvg4.dll │ │ ├── qtga4.dll │ │ └── qtiff4.dll │ ├── phonon_backend │ │ └── phonon_ds94.dll │ ├── qmltooling │ │ ├── qmldbg_inspector4.dll │ │ └── qmldbg_tcp4.dll │ └── sqldrivers │ │ └── qsqlite4.dll ├── setting.ini └── tools │ └── ArduinoUploader │ ├── Arduino │ ├── hardware │ │ ├── arduino │ │ │ ├── boards.txt │ │ │ ├── bootloaders │ │ │ │ ├── atmega │ │ │ │ │ ├── ATmegaBOOT_168.c │ │ │ │ │ ├── ATmegaBOOT_168_atmega1280.hex │ │ │ │ │ ├── ATmegaBOOT_168_atmega328.hex │ │ │ │ │ ├── ATmegaBOOT_168_atmega328_pro_8MHz.hex │ │ │ │ │ ├── ATmegaBOOT_168_diecimila.hex │ │ │ │ │ ├── ATmegaBOOT_168_ng.hex │ │ │ │ │ ├── ATmegaBOOT_168_pro_8MHz.hex │ │ │ │ │ └── Makefile │ │ │ │ ├── atmega8 │ │ │ │ │ ├── ATmegaBOOT-prod-firmware-2009-11-07.hex │ │ │ │ │ ├── ATmegaBOOT.c │ │ │ │ │ ├── ATmegaBOOT.hex │ │ │ │ │ ├── ATmegaBOOT.txt │ │ │ │ │ └── Makefile │ │ │ │ ├── bt │ │ │ │ │ ├── ATmegaBOOT_168.c │ │ │ │ │ ├── ATmegaBOOT_168.hex │ │ │ │ │ ├── ATmegaBOOT_168_atmega328_bt.hex │ │ │ │ │ └── Makefile │ │ │ │ ├── caterina-LilyPadUSB │ │ │ │ │ ├── Caterina-LilyPadUSB.hex │ │ │ │ │ ├── Caterina.c │ │ │ │ │ ├── Caterina.h │ │ │ │ │ ├── Descriptors.c │ │ │ │ │ ├── Descriptors.h │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Readme.txt │ │ │ │ ├── caterina │ │ │ │ │ ├── Caterina-Esplora.hex │ │ │ │ │ ├── Caterina-Esplora.txt │ │ │ │ │ ├── Caterina-Leonardo.hex │ │ │ │ │ ├── Caterina-Leonardo.txt │ │ │ │ │ ├── Caterina-Micro.hex │ │ │ │ │ ├── Caterina-Micro.txt │ │ │ │ │ ├── Caterina.c │ │ │ │ │ ├── Caterina.h │ │ │ │ │ ├── Descriptors.c │ │ │ │ │ ├── Descriptors.h │ │ │ │ │ ├── Esplora-prod-firmware-2012-12-10.hex │ │ │ │ │ ├── Esplora-prod-firmware-2012-12-10.txt │ │ │ │ │ ├── Leonardo-prod-firmware-2012-04-26.hex │ │ │ │ │ ├── Leonardo-prod-firmware-2012-04-26.txt │ │ │ │ │ ├── Leonardo-prod-firmware-2012-12-10.hex │ │ │ │ │ ├── Leonardo-prod-firmware-2012-12-10.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Micro-prod-firmware-2012-11-23.hex │ │ │ │ │ ├── Micro-prod-firmware-2012-11-23.txt │ │ │ │ │ ├── Micro-prod-firmware-2012-12-10.hex │ │ │ │ │ └── Micro-prod-firmware-2012-12-10.txt │ │ │ │ ├── lilypad │ │ │ │ │ ├── LilyPadBOOT_168.hex │ │ │ │ │ └── src │ │ │ │ │ │ ├── ATmegaBOOT.c │ │ │ │ │ │ └── Makefile │ │ │ │ ├── optiboot │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.TXT │ │ │ │ │ ├── boot.h │ │ │ │ │ ├── makeall │ │ │ │ │ ├── omake │ │ │ │ │ ├── omake.bat │ │ │ │ │ ├── optiboot.c │ │ │ │ │ ├── optiboot_atmega168.hex │ │ │ │ │ ├── optiboot_atmega168.lst │ │ │ │ │ ├── optiboot_atmega328-Mini.hex │ │ │ │ │ ├── optiboot_atmega328.hex │ │ │ │ │ ├── optiboot_atmega328.lst │ │ │ │ │ ├── optiboot_atmega8.hex │ │ │ │ │ ├── optiboot_atmega8.lst │ │ │ │ │ ├── pin_defs.h │ │ │ │ │ └── stk500.h │ │ │ │ └── stk500v2 │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Mega2560-prod-firmware-2011-06-29.hex │ │ │ │ │ ├── STK500V2.pnproj │ │ │ │ │ ├── STK500V2.pnps │ │ │ │ │ ├── avr_cpunames.h │ │ │ │ │ ├── avrinterruptnames.h │ │ │ │ │ ├── command.h │ │ │ │ │ ├── stk500boot.c │ │ │ │ │ ├── stk500boot.ppg │ │ │ │ │ └── stk500boot_v2_mega2560.hex │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ ├── Arduino.h │ │ │ │ │ ├── CDC.cpp │ │ │ │ │ ├── Client.h │ │ │ │ │ ├── HID.cpp │ │ │ │ │ ├── HardwareSerial.cpp │ │ │ │ │ ├── HardwareSerial.h │ │ │ │ │ ├── IPAddress.cpp │ │ │ │ │ ├── IPAddress.h │ │ │ │ │ ├── Platform.h │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ ├── Printable.h │ │ │ │ │ ├── Server.h │ │ │ │ │ ├── Stream.cpp │ │ │ │ │ ├── Stream.h │ │ │ │ │ ├── Tone.cpp │ │ │ │ │ ├── USBAPI.h │ │ │ │ │ ├── USBCore.cpp │ │ │ │ │ ├── USBCore.h │ │ │ │ │ ├── USBDesc.h │ │ │ │ │ ├── Udp.h │ │ │ │ │ ├── WCharacter.h │ │ │ │ │ ├── WInterrupts.c │ │ │ │ │ ├── WMath.cpp │ │ │ │ │ ├── WString.cpp │ │ │ │ │ ├── WString.h │ │ │ │ │ ├── binary.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── malloc.c │ │ │ │ │ ├── new.cpp │ │ │ │ │ ├── new.h │ │ │ │ │ ├── wiring.c │ │ │ │ │ ├── wiring_analog.c │ │ │ │ │ ├── wiring_digital.c │ │ │ │ │ ├── wiring_private.h │ │ │ │ │ ├── wiring_pulse.c │ │ │ │ │ └── wiring_shift.c │ │ │ ├── firmwares │ │ │ │ ├── atmegaxxu2 │ │ │ │ │ ├── Arduino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-Rev3.hex │ │ │ │ │ ├── Arduino-COMBINED-dfu-usbserial-atmega16u2-MegaADK-Rev3.hex │ │ │ │ │ ├── Arduino-COMBINED-dfu-usbserial-atmega16u2-Uno-Rev3.hex │ │ │ │ │ ├── MEGA-dfu_and_usbserial_combined.hex │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── UNO-dfu_and_usbserial_combined.hex │ │ │ │ │ ├── arduino-usbdfu │ │ │ │ │ │ ├── Arduino-usbdfu.c │ │ │ │ │ │ ├── Arduino-usbdfu.h │ │ │ │ │ │ ├── Board │ │ │ │ │ │ │ └── LEDs.h │ │ │ │ │ │ ├── Descriptors.c │ │ │ │ │ │ ├── Descriptors.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── arduino-usbserial │ │ │ │ │ │ ├── Arduino-usbserial-atmega16u2-Mega2560-Rev3.hex │ │ │ │ │ │ ├── Arduino-usbserial-atmega16u2-MegaADK-Rev3.hex │ │ │ │ │ │ ├── Arduino-usbserial-atmega16u2-Uno-Rev3.hex │ │ │ │ │ │ ├── Arduino-usbserial-mega.hex │ │ │ │ │ │ ├── Arduino-usbserial-uno.hex │ │ │ │ │ │ ├── Arduino-usbserial.c │ │ │ │ │ │ ├── Arduino-usbserial.h │ │ │ │ │ │ ├── Board │ │ │ │ │ │ └── LEDs.h │ │ │ │ │ │ ├── Descriptors.c │ │ │ │ │ │ ├── Descriptors.h │ │ │ │ │ │ ├── Lib │ │ │ │ │ │ └── LightweightRingBuff.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── readme.txt │ │ │ │ └── wifishield │ │ │ │ │ ├── binary │ │ │ │ │ ├── wifiHD.elf │ │ │ │ │ ├── wifiHD.hex │ │ │ │ │ ├── wifiHD_2_1.elf │ │ │ │ │ ├── wifi_dnld.elf │ │ │ │ │ ├── wifi_dnld.hex │ │ │ │ │ └── wifi_dnld_2_1.elf │ │ │ │ │ ├── scripts │ │ │ │ │ ├── ArduinoWifiShield_upgrade.sh │ │ │ │ │ └── ArduinoWifiShield_upgrade_mac.sh │ │ │ │ │ ├── wifiHD │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Release │ │ │ │ │ │ └── wifiHD.elf │ │ │ │ │ └── src │ │ │ │ │ │ ├── CONFIG │ │ │ │ │ │ ├── conf_access.h │ │ │ │ │ │ ├── conf_at45dbx.h │ │ │ │ │ │ ├── conf_ebi.h │ │ │ │ │ │ └── conf_sd_mmc_spi.h │ │ │ │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ │ │ ├── ASM │ │ │ │ │ │ │ └── trampoline.x │ │ │ │ │ │ ├── BOARDS │ │ │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ │ └── board.h.my │ │ │ │ │ │ ├── COMPONENTS │ │ │ │ │ │ │ ├── MEMORY │ │ │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ │ │ │ └── WIFI │ │ │ │ │ │ │ │ └── HD │ │ │ │ │ │ │ │ ├── v2.7.0 │ │ │ │ │ │ │ │ └── revision.txt │ │ │ │ │ │ │ │ ├── wl_api.h │ │ │ │ │ │ │ │ ├── wl_fw.h │ │ │ │ │ │ │ │ ├── wl_os.h │ │ │ │ │ │ │ │ ├── wl_sdio.h │ │ │ │ │ │ │ │ ├── wl_spi.h │ │ │ │ │ │ │ │ └── wlap_api.h │ │ │ │ │ │ ├── DRIVERS │ │ │ │ │ │ │ ├── CPU │ │ │ │ │ │ │ │ └── CYCLE_COUNTER │ │ │ │ │ │ │ │ │ └── cycle_counter.h │ │ │ │ │ │ │ ├── EBI │ │ │ │ │ │ │ │ └── SMC │ │ │ │ │ │ │ │ │ ├── smc.c │ │ │ │ │ │ │ │ │ └── smc.h │ │ │ │ │ │ │ ├── EIC │ │ │ │ │ │ │ │ ├── eic.c │ │ │ │ │ │ │ │ └── eic.h │ │ │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ │ │ └── flashc.h │ │ │ │ │ │ │ ├── GPIO │ │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ │ └── gpio.h │ │ │ │ │ │ │ ├── INTC │ │ │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ │ │ └── intc.h │ │ │ │ │ │ │ ├── PDCA │ │ │ │ │ │ │ │ ├── pdca.c │ │ │ │ │ │ │ │ └── pdca.h │ │ │ │ │ │ │ ├── PM │ │ │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ │ │ ├── RTC │ │ │ │ │ │ │ │ ├── rtc.c │ │ │ │ │ │ │ │ └── rtc.h │ │ │ │ │ │ │ ├── SPI │ │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ │ ├── TC │ │ │ │ │ │ │ │ ├── tc.c │ │ │ │ │ │ │ │ └── tc.h │ │ │ │ │ │ │ └── USART │ │ │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ │ │ └── usart.h │ │ │ │ │ │ ├── SERVICES │ │ │ │ │ │ │ ├── DELAY │ │ │ │ │ │ │ │ ├── delay.c │ │ │ │ │ │ │ │ └── delay.h │ │ │ │ │ │ │ ├── LWIP │ │ │ │ │ │ │ │ ├── lwip-1.3.2 │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ │ │ ├── dhcp.c │ │ │ │ │ │ │ │ │ │ ├── dns.c │ │ │ │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ │ │ ├── autoip.c │ │ │ │ │ │ │ │ │ │ │ ├── icmp.c │ │ │ │ │ │ │ │ │ │ │ ├── igmp.c │ │ │ │ │ │ │ │ │ │ │ ├── inet.c │ │ │ │ │ │ │ │ │ │ │ ├── inet_chksum.c │ │ │ │ │ │ │ │ │ │ │ ├── ip.c │ │ │ │ │ │ │ │ │ │ │ ├── ip_addr.c │ │ │ │ │ │ │ │ │ │ │ └── ip_frag.c │ │ │ │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ │ │ │ ├── memp.c │ │ │ │ │ │ │ │ │ │ ├── netif.c │ │ │ │ │ │ │ │ │ │ ├── pbuf.c │ │ │ │ │ │ │ │ │ │ ├── raw.c │ │ │ │ │ │ │ │ │ │ ├── stats.c │ │ │ │ │ │ │ │ │ │ ├── tcp.c │ │ │ │ │ │ │ │ │ │ ├── tcp_in.c │ │ │ │ │ │ │ │ │ │ ├── tcp_out.c │ │ │ │ │ │ │ │ │ │ └── udp.c │ │ │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ │ │ └── lwip │ │ │ │ │ │ │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ │ │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ │ │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ │ │ │ │ │ │ │ └── ip_frag.h │ │ │ │ │ │ │ │ │ │ ├── lwip │ │ │ │ │ │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ │ │ │ │ │ ├── api_msg.h │ │ │ │ │ │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ │ │ │ │ ├── def.h │ │ │ │ │ │ │ │ │ │ │ ├── dhcp.h │ │ │ │ │ │ │ │ │ │ │ ├── dns.h │ │ │ │ │ │ │ │ │ │ │ ├── err.h │ │ │ │ │ │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ │ │ │ │ │ ├── memp.h │ │ │ │ │ │ │ │ │ │ │ ├── memp_std.h │ │ │ │ │ │ │ │ │ │ │ ├── netbuf.h │ │ │ │ │ │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ │ │ │ │ │ ├── netif.h │ │ │ │ │ │ │ │ │ │ │ ├── netifapi.h │ │ │ │ │ │ │ │ │ │ │ ├── opt.h │ │ │ │ │ │ │ │ │ │ │ ├── pbuf.h │ │ │ │ │ │ │ │ │ │ │ ├── raw.h │ │ │ │ │ │ │ │ │ │ │ ├── sio.h │ │ │ │ │ │ │ │ │ │ │ ├── snmp.h │ │ │ │ │ │ │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ │ │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ │ │ │ │ │ │ ├── snmp_structs.h │ │ │ │ │ │ │ │ │ │ │ ├── sockets.h │ │ │ │ │ │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ │ │ │ │ │ ├── sys.h │ │ │ │ │ │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ │ │ │ │ │ └── udp.h │ │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ │ │ ├── etharp.h │ │ │ │ │ │ │ │ │ │ │ ├── loopif.h │ │ │ │ │ │ │ │ │ │ │ ├── ppp_oe.h │ │ │ │ │ │ │ │ │ │ │ └── slipif.h │ │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ │ ├── etharp.c │ │ │ │ │ │ │ │ │ │ └── loopif.c │ │ │ │ │ │ │ │ └── lwip-port-1.3.2 │ │ │ │ │ │ │ │ │ └── HD │ │ │ │ │ │ │ │ │ ├── if │ │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ │ │ │ │ │ └── perf.h │ │ │ │ │ │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ │ │ └── wlif.h │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ │ └── wlif.c │ │ │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ │ │ └── UTILS │ │ │ │ │ │ │ ├── DEBUG │ │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ │ │ └── print_funcs.h │ │ │ │ │ │ │ ├── LIBS │ │ │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ │ │ └── INCLUDE │ │ │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ │ │ ├── stringz.h │ │ │ │ │ │ │ └── tpaste.h │ │ │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ └── crt0.x │ │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ │ │ └── parts.h │ │ │ │ │ │ ├── ard_spi.c │ │ │ │ │ │ ├── ard_spi.h │ │ │ │ │ │ ├── ard_tcp.c │ │ │ │ │ │ ├── ard_tcp.h │ │ │ │ │ │ ├── ard_utils.c │ │ │ │ │ │ ├── ard_utils.h │ │ │ │ │ │ ├── avr32_spi.c │ │ │ │ │ │ ├── board_init.c │ │ │ │ │ │ ├── board_init.h │ │ │ │ │ │ ├── cmd_wl.c │ │ │ │ │ │ ├── cmd_wl.h │ │ │ │ │ │ ├── console.c │ │ │ │ │ │ ├── console.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── fw_download.h │ │ │ │ │ │ ├── fw_download_extflash.c │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── lwip_setup.c │ │ │ │ │ │ ├── lwip_setup.h │ │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── nvram.c │ │ │ │ │ │ ├── nvram.h │ │ │ │ │ │ ├── owl_os.c │ │ │ │ │ │ ├── ping.c │ │ │ │ │ │ ├── ping.h │ │ │ │ │ │ ├── printf-stdarg.c │ │ │ │ │ │ ├── printf-stdarg.h │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── top_defs.h │ │ │ │ │ │ ├── trace.h │ │ │ │ │ │ ├── util.c │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ ├── wifi_spi.h │ │ │ │ │ │ ├── wl_cm.c │ │ │ │ │ │ ├── wl_cm.h │ │ │ │ │ │ └── wl_definitions.h │ │ │ │ │ └── wifi_dnld │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Release │ │ │ │ │ └── wifi_dnld.elf │ │ │ │ │ └── src │ │ │ │ │ ├── CONFIG │ │ │ │ │ ├── conf_access.h │ │ │ │ │ └── conf_at45dbx.h │ │ │ │ │ ├── Doc │ │ │ │ │ ├── SPB104 product brief.pdf │ │ │ │ │ └── gettingstarted.pdf │ │ │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ │ ├── ASM │ │ │ │ │ │ └── trampoline.x │ │ │ │ │ ├── BOARDS │ │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.h.ori │ │ │ │ │ ├── COMPONENTS │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ │ ├── DRIVERS │ │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ │ └── flashc.h │ │ │ │ │ │ ├── GPIO │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ └── gpio.h │ │ │ │ │ │ ├── INTC │ │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ │ └── intc.h │ │ │ │ │ │ ├── PM │ │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ │ ├── SPI │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ └── USART │ │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ │ └── usart.h │ │ │ │ │ ├── SERVICES │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ │ └── UTILS │ │ │ │ │ │ ├── DEBUG │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ │ └── print_funcs.h │ │ │ │ │ │ ├── LIBS │ │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ │ └── INCLUDE │ │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ │ ├── stringz.h │ │ │ │ │ │ └── tpaste.h │ │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── crt0.x │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ │ └── parts.h │ │ │ │ │ ├── clocks.c │ │ │ │ │ ├── clocks.h │ │ │ │ │ ├── flash_fw.c │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── nor_flash.c │ │ │ │ │ ├── nor_flash.h │ │ │ │ │ ├── printf-stdarg.c │ │ │ │ │ ├── printf-stdarg.h │ │ │ │ │ ├── startup.c │ │ │ │ │ ├── startup.h │ │ │ │ │ └── wl_fw.h │ │ │ ├── programmers.txt │ │ │ └── variants │ │ │ │ ├── eightanaloginputs │ │ │ │ └── pins_arduino.h │ │ │ │ ├── leonardo │ │ │ │ └── pins_arduino.h │ │ │ │ ├── mega │ │ │ │ └── pins_arduino.h │ │ │ │ ├── micro │ │ │ │ └── pins_arduino.h │ │ │ │ └── standard │ │ │ │ └── pins_arduino.h │ │ └── tools │ │ │ └── avr │ │ │ ├── WinAVR-20081205-uninstall.exe │ │ │ ├── WinAVR-manifest.log │ │ │ ├── WinAVR-user-manual.html │ │ │ ├── WinAVR-user-manual.txt │ │ │ ├── avr │ │ │ ├── bin │ │ │ │ ├── ar.exe │ │ │ │ ├── as.exe │ │ │ │ ├── c++.exe │ │ │ │ ├── g++.exe │ │ │ │ ├── gcc.exe │ │ │ │ ├── ld.exe │ │ │ │ ├── nm.exe │ │ │ │ ├── objcopy.exe │ │ │ │ ├── objdump.exe │ │ │ │ ├── ranlib.exe │ │ │ │ └── strip.exe │ │ │ ├── include │ │ │ │ ├── alloca.h │ │ │ │ ├── assert.h │ │ │ │ ├── avr │ │ │ │ │ ├── boot.h │ │ │ │ │ ├── builtins.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── crc16.h │ │ │ │ │ ├── delay.h │ │ │ │ │ ├── eeprom.h │ │ │ │ │ ├── fuse.h │ │ │ │ │ ├── interrupt.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── io1200.h │ │ │ │ │ ├── io2313.h │ │ │ │ │ ├── io2323.h │ │ │ │ │ ├── io2333.h │ │ │ │ │ ├── io2343.h │ │ │ │ │ ├── io43u32x.h │ │ │ │ │ ├── io43u35x.h │ │ │ │ │ ├── io4414.h │ │ │ │ │ ├── io4433.h │ │ │ │ │ ├── io4434.h │ │ │ │ │ ├── io58u54a.h │ │ │ │ │ ├── io76c711.h │ │ │ │ │ ├── io8515.h │ │ │ │ │ ├── io8534.h │ │ │ │ │ ├── io8535.h │ │ │ │ │ ├── io86r401.h │ │ │ │ │ ├── io90pwm1.h │ │ │ │ │ ├── io90pwm216.h │ │ │ │ │ ├── io90pwm2b.h │ │ │ │ │ ├── io90pwm316.h │ │ │ │ │ ├── io90pwm3b.h │ │ │ │ │ ├── io90pwmx.h │ │ │ │ │ ├── ioat94k.h │ │ │ │ │ ├── iocan128.h │ │ │ │ │ ├── iocan32.h │ │ │ │ │ ├── iocan64.h │ │ │ │ │ ├── iocanxx.h │ │ │ │ │ ├── iom103.h │ │ │ │ │ ├── iom128.h │ │ │ │ │ ├── iom1280.h │ │ │ │ │ ├── iom1281.h │ │ │ │ │ ├── iom1284p.h │ │ │ │ │ ├── iom16.h │ │ │ │ │ ├── iom161.h │ │ │ │ │ ├── iom162.h │ │ │ │ │ ├── iom163.h │ │ │ │ │ ├── iom164.h │ │ │ │ │ ├── iom165.h │ │ │ │ │ ├── iom165p.h │ │ │ │ │ ├── iom168.h │ │ │ │ │ ├── iom168p.h │ │ │ │ │ ├── iom169.h │ │ │ │ │ ├── iom169p.h │ │ │ │ │ ├── iom16hva.h │ │ │ │ │ ├── iom2560.h │ │ │ │ │ ├── iom2561.h │ │ │ │ │ ├── iom32.h │ │ │ │ │ ├── iom323.h │ │ │ │ │ ├── iom324.h │ │ │ │ │ ├── iom325.h │ │ │ │ │ ├── iom3250.h │ │ │ │ │ ├── iom328p.h │ │ │ │ │ ├── iom329.h │ │ │ │ │ ├── iom3290.h │ │ │ │ │ ├── iom32c1.h │ │ │ │ │ ├── iom32hvb.h │ │ │ │ │ ├── iom32m1.h │ │ │ │ │ ├── iom32u4.h │ │ │ │ │ ├── iom32u6.h │ │ │ │ │ ├── iom406.h │ │ │ │ │ ├── iom48.h │ │ │ │ │ ├── iom48p.h │ │ │ │ │ ├── iom64.h │ │ │ │ │ ├── iom640.h │ │ │ │ │ ├── iom644.h │ │ │ │ │ ├── iom645.h │ │ │ │ │ ├── iom6450.h │ │ │ │ │ ├── iom649.h │ │ │ │ │ ├── iom6490.h │ │ │ │ │ ├── iom8.h │ │ │ │ │ ├── iom8515.h │ │ │ │ │ ├── iom8535.h │ │ │ │ │ ├── iom88.h │ │ │ │ │ ├── iom88p.h │ │ │ │ │ ├── iom8hva.h │ │ │ │ │ ├── iomx8.h │ │ │ │ │ ├── iomxx0_1.h │ │ │ │ │ ├── iomxx4.h │ │ │ │ │ ├── iomxxhva.h │ │ │ │ │ ├── iotn11.h │ │ │ │ │ ├── iotn12.h │ │ │ │ │ ├── iotn13.h │ │ │ │ │ ├── iotn13a.h │ │ │ │ │ ├── iotn15.h │ │ │ │ │ ├── iotn167.h │ │ │ │ │ ├── iotn22.h │ │ │ │ │ ├── iotn2313.h │ │ │ │ │ ├── iotn24.h │ │ │ │ │ ├── iotn25.h │ │ │ │ │ ├── iotn26.h │ │ │ │ │ ├── iotn261.h │ │ │ │ │ ├── iotn28.h │ │ │ │ │ ├── iotn43u.h │ │ │ │ │ ├── iotn44.h │ │ │ │ │ ├── iotn45.h │ │ │ │ │ ├── iotn461.h │ │ │ │ │ ├── iotn48.h │ │ │ │ │ ├── iotn84.h │ │ │ │ │ ├── iotn85.h │ │ │ │ │ ├── iotn861.h │ │ │ │ │ ├── iotn88.h │ │ │ │ │ ├── iotnx4.h │ │ │ │ │ ├── iotnx5.h │ │ │ │ │ ├── iotnx61.h │ │ │ │ │ ├── iousb1286.h │ │ │ │ │ ├── iousb1287.h │ │ │ │ │ ├── iousb162.h │ │ │ │ │ ├── iousb646.h │ │ │ │ │ ├── iousb647.h │ │ │ │ │ ├── iousb82.h │ │ │ │ │ ├── iousbxx2.h │ │ │ │ │ ├── iousbxx6_7.h │ │ │ │ │ ├── iox128a1.h │ │ │ │ │ ├── iox128a3.h │ │ │ │ │ ├── iox256a3.h │ │ │ │ │ ├── iox256a3b.h │ │ │ │ │ ├── iox64a1.h │ │ │ │ │ ├── iox64a3.h │ │ │ │ │ ├── lock.h │ │ │ │ │ ├── parity.h │ │ │ │ │ ├── pgmspace.h │ │ │ │ │ ├── portpins.h │ │ │ │ │ ├── power.h │ │ │ │ │ ├── sfr_defs.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── sleep.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── wdt.h │ │ │ │ ├── compat │ │ │ │ │ ├── deprecated.h │ │ │ │ │ ├── ina90.h │ │ │ │ │ └── twi.h │ │ │ │ ├── ctype.h │ │ │ │ ├── errno.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── math.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ └── util │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── crc16.h │ │ │ │ │ ├── delay.h │ │ │ │ │ ├── delay_basic.h │ │ │ │ │ ├── parity.h │ │ │ │ │ ├── setbaud.h │ │ │ │ │ └── twi.h │ │ │ └── lib │ │ │ │ └── ldscripts │ │ │ │ ├── avr1.x │ │ │ │ ├── avr1.xbn │ │ │ │ ├── avr1.xn │ │ │ │ ├── avr1.xr │ │ │ │ ├── avr1.xu │ │ │ │ ├── avr2.x │ │ │ │ ├── avr2.xbn │ │ │ │ ├── avr2.xn │ │ │ │ ├── avr2.xr │ │ │ │ ├── avr2.xu │ │ │ │ ├── avr25.x │ │ │ │ ├── avr25.xbn │ │ │ │ ├── avr25.xn │ │ │ │ ├── avr25.xr │ │ │ │ ├── avr25.xu │ │ │ │ ├── avr3.x │ │ │ │ ├── avr3.xbn │ │ │ │ ├── avr3.xn │ │ │ │ ├── avr3.xr │ │ │ │ ├── avr3.xu │ │ │ │ ├── avr31.x │ │ │ │ ├── avr31.xbn │ │ │ │ ├── avr31.xn │ │ │ │ ├── avr31.xr │ │ │ │ ├── avr31.xu │ │ │ │ ├── avr35.x │ │ │ │ ├── avr35.xbn │ │ │ │ ├── avr35.xn │ │ │ │ ├── avr35.xr │ │ │ │ ├── avr35.xu │ │ │ │ ├── avr4.x │ │ │ │ ├── avr4.xbn │ │ │ │ ├── avr4.xn │ │ │ │ ├── avr4.xr │ │ │ │ ├── avr4.xu │ │ │ │ ├── avr5.x │ │ │ │ ├── avr5.xbn │ │ │ │ ├── avr5.xn │ │ │ │ ├── avr5.xr │ │ │ │ ├── avr5.xu │ │ │ │ ├── avr51.x │ │ │ │ ├── avr51.xbn │ │ │ │ ├── avr51.xn │ │ │ │ ├── avr51.xr │ │ │ │ ├── avr51.xu │ │ │ │ ├── avr6.x │ │ │ │ ├── avr6.xbn │ │ │ │ ├── avr6.xn │ │ │ │ ├── avr6.xr │ │ │ │ ├── avr6.xu │ │ │ │ ├── avrxmega1.x │ │ │ │ ├── avrxmega1.xbn │ │ │ │ ├── avrxmega1.xn │ │ │ │ ├── avrxmega1.xr │ │ │ │ ├── avrxmega1.xu │ │ │ │ ├── avrxmega2.x │ │ │ │ ├── avrxmega2.xbn │ │ │ │ ├── avrxmega2.xn │ │ │ │ ├── avrxmega2.xr │ │ │ │ ├── avrxmega2.xu │ │ │ │ ├── avrxmega3.x │ │ │ │ ├── avrxmega3.xbn │ │ │ │ ├── avrxmega3.xn │ │ │ │ ├── avrxmega3.xr │ │ │ │ ├── avrxmega3.xu │ │ │ │ ├── avrxmega4.x │ │ │ │ ├── avrxmega4.xbn │ │ │ │ ├── avrxmega4.xn │ │ │ │ ├── avrxmega4.xr │ │ │ │ ├── avrxmega4.xu │ │ │ │ ├── avrxmega5.x │ │ │ │ ├── avrxmega5.xbn │ │ │ │ ├── avrxmega5.xn │ │ │ │ ├── avrxmega5.xr │ │ │ │ ├── avrxmega5.xu │ │ │ │ ├── avrxmega6.x │ │ │ │ ├── avrxmega6.xbn │ │ │ │ ├── avrxmega6.xn │ │ │ │ ├── avrxmega6.xr │ │ │ │ ├── avrxmega6.xu │ │ │ │ ├── avrxmega7.x │ │ │ │ ├── avrxmega7.xbn │ │ │ │ ├── avrxmega7.xn │ │ │ │ ├── avrxmega7.xr │ │ │ │ └── avrxmega7.xu │ │ │ ├── bin │ │ │ ├── avarice.exe │ │ │ ├── avr-addr2line.exe │ │ │ ├── avr-ar.exe │ │ │ ├── avr-as.exe │ │ │ ├── avr-c++.exe │ │ │ ├── avr-c++filt.exe │ │ │ ├── avr-cpp.exe │ │ │ ├── avr-g++.exe │ │ │ ├── avr-gcc-4.3.2.exe │ │ │ ├── avr-gcc.exe │ │ │ ├── avr-gccbug │ │ │ ├── avr-gcov.exe │ │ │ ├── avr-gdb.exe │ │ │ ├── avr-gprof.exe │ │ │ ├── avr-insight.exe │ │ │ ├── avr-ld.exe │ │ │ ├── avr-man │ │ │ ├── avr-nm.exe │ │ │ ├── avr-objcopy.exe │ │ │ ├── avr-objdump.exe │ │ │ ├── avr-ranlib.exe │ │ │ ├── avr-readelf.exe │ │ │ ├── avr-size.exe │ │ │ ├── avr-strings.exe │ │ │ ├── avr-strip.exe │ │ │ ├── avrdude.exe │ │ │ ├── cygwin1.dll │ │ │ ├── giveio.sys │ │ │ ├── ice-gdb │ │ │ ├── ice-insight │ │ │ ├── install_giveio.bat │ │ │ ├── itcl32.dll │ │ │ ├── itk32.dll │ │ │ ├── kill-avarice │ │ │ ├── libusb0.dll │ │ │ ├── loaddrv.exe │ │ │ ├── remove_giveio.bat │ │ │ ├── simulavr-disp.exe │ │ │ ├── simulavr-vcd.exe │ │ │ ├── simulavr.exe │ │ │ ├── srec_cat.exe │ │ │ ├── srec_cmp.exe │ │ │ ├── srec_info.exe │ │ │ ├── start-avarice │ │ │ ├── status_giveio.bat │ │ │ ├── tcl84.dll │ │ │ ├── tclpip84.dll │ │ │ ├── tclsh84.exe │ │ │ ├── tk84.dll │ │ │ └── wish84.exe │ │ │ ├── doc │ │ │ ├── GNU Manuals Online.url │ │ │ ├── WinAVR.url │ │ │ ├── avarice │ │ │ │ ├── avarice.pdf │ │ │ │ └── gdb-avarice-script │ │ │ ├── avr-libc │ │ │ │ ├── avr-libc-user-manual.pdf │ │ │ │ ├── avr-libc-user-manual.ps │ │ │ │ ├── avr-libc-user-manual │ │ │ │ │ ├── FAQ.html │ │ │ │ │ ├── acks.html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── assembler.html │ │ │ │ │ ├── assert_8h.html │ │ │ │ │ ├── atoi_8S.html │ │ │ │ │ ├── atol_8S.html │ │ │ │ │ ├── atomic_8h.html │ │ │ │ │ ├── avrs.png │ │ │ │ │ ├── benchmarks.html │ │ │ │ │ ├── boot_8h.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── crc16_8h.html │ │ │ │ │ ├── ctype_8h.html │ │ │ │ │ ├── delay_8h.html │ │ │ │ │ ├── delay__basic_8h.html │ │ │ │ │ ├── demo.png │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── dox.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── errno_8h.html │ │ │ │ │ ├── fdevopen_8c.html │ │ │ │ │ ├── ffs_8S.html │ │ │ │ │ ├── ffsl_8S.html │ │ │ │ │ ├── ffsll_8S.html │ │ │ │ │ ├── files.html │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── fuse_8h.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_0x61.html │ │ │ │ │ ├── globals_0x62.html │ │ │ │ │ ├── globals_0x63.html │ │ │ │ │ ├── globals_0x64.html │ │ │ │ │ ├── globals_0x65.html │ │ │ │ │ ├── globals_0x66.html │ │ │ │ │ ├── globals_0x67.html │ │ │ │ │ ├── globals_0x68.html │ │ │ │ │ ├── globals_0x69.html │ │ │ │ │ ├── globals_0x6c.html │ │ │ │ │ ├── globals_0x6d.html │ │ │ │ │ ├── globals_0x6e.html │ │ │ │ │ ├── globals_0x70.html │ │ │ │ │ ├── globals_0x71.html │ │ │ │ │ ├── globals_0x72.html │ │ │ │ │ ├── globals_0x73.html │ │ │ │ │ ├── globals_0x74.html │ │ │ │ │ ├── globals_0x75.html │ │ │ │ │ ├── globals_0x76.html │ │ │ │ │ ├── globals_0x77.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_defs_0x61.html │ │ │ │ │ ├── globals_defs_0x62.html │ │ │ │ │ ├── globals_defs_0x63.html │ │ │ │ │ ├── globals_defs_0x64.html │ │ │ │ │ ├── globals_defs_0x65.html │ │ │ │ │ ├── globals_defs_0x66.html │ │ │ │ │ ├── globals_defs_0x67.html │ │ │ │ │ ├── globals_defs_0x69.html │ │ │ │ │ ├── globals_defs_0x6d.html │ │ │ │ │ ├── globals_defs_0x6e.html │ │ │ │ │ ├── globals_defs_0x70.html │ │ │ │ │ ├── globals_defs_0x72.html │ │ │ │ │ ├── globals_defs_0x73.html │ │ │ │ │ ├── globals_defs_0x74.html │ │ │ │ │ ├── globals_defs_0x75.html │ │ │ │ │ ├── globals_defs_0x77.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_func_0x61.html │ │ │ │ │ ├── globals_func_0x62.html │ │ │ │ │ ├── globals_func_0x63.html │ │ │ │ │ ├── globals_func_0x64.html │ │ │ │ │ ├── globals_func_0x65.html │ │ │ │ │ ├── globals_func_0x66.html │ │ │ │ │ ├── globals_func_0x67.html │ │ │ │ │ ├── globals_func_0x68.html │ │ │ │ │ ├── globals_func_0x69.html │ │ │ │ │ ├── globals_func_0x6c.html │ │ │ │ │ ├── globals_func_0x6d.html │ │ │ │ │ ├── globals_func_0x70.html │ │ │ │ │ ├── globals_func_0x71.html │ │ │ │ │ ├── globals_func_0x72.html │ │ │ │ │ ├── globals_func_0x73.html │ │ │ │ │ ├── globals_func_0x74.html │ │ │ │ │ ├── globals_func_0x75.html │ │ │ │ │ ├── globals_func_0x76.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ ├── group__alloca.html │ │ │ │ │ ├── group__asmdemo.html │ │ │ │ │ ├── group__avr__assert.html │ │ │ │ │ ├── group__avr__boot.html │ │ │ │ │ ├── group__avr__eeprom.html │ │ │ │ │ ├── group__avr__errno.html │ │ │ │ │ ├── group__avr__fuse.html │ │ │ │ │ ├── group__avr__interrupts.html │ │ │ │ │ ├── group__avr__inttypes.html │ │ │ │ │ ├── group__avr__io.html │ │ │ │ │ ├── group__avr__lock.html │ │ │ │ │ ├── group__avr__math.html │ │ │ │ │ ├── group__avr__pgmspace.html │ │ │ │ │ ├── group__avr__power.html │ │ │ │ │ ├── group__avr__sfr.html │ │ │ │ │ ├── group__avr__sfr__notes.html │ │ │ │ │ ├── group__avr__sleep.html │ │ │ │ │ ├── group__avr__stdint.html │ │ │ │ │ ├── group__avr__stdio.html │ │ │ │ │ ├── group__avr__stdlib.html │ │ │ │ │ ├── group__avr__string.html │ │ │ │ │ ├── group__avr__version.html │ │ │ │ │ ├── group__avr__watchdog.html │ │ │ │ │ ├── group__compat__ina90.html │ │ │ │ │ ├── group__ctype.html │ │ │ │ │ ├── group__demo__project.html │ │ │ │ │ ├── group__demos.html │ │ │ │ │ ├── group__deprecated__items.html │ │ │ │ │ ├── group__largedemo.html │ │ │ │ │ ├── group__setjmp.html │ │ │ │ │ ├── group__stdiodemo.html │ │ │ │ │ ├── group__twi__demo.html │ │ │ │ │ ├── group__util__atomic.html │ │ │ │ │ ├── group__util__crc.html │ │ │ │ │ ├── group__util__delay.html │ │ │ │ │ ├── group__util__delay__basic.html │ │ │ │ │ ├── group__util__parity.html │ │ │ │ │ ├── group__util__setbaud.html │ │ │ │ │ ├── group__util__twi.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inline_asm.html │ │ │ │ │ ├── install_tools.html │ │ │ │ │ ├── interrupt_8h.html │ │ │ │ │ ├── inttypes_8h.html │ │ │ │ │ ├── io_8h.html │ │ │ │ │ ├── largedemo-setup.jpg │ │ │ │ │ ├── largedemo-wiring.jpg │ │ │ │ │ ├── largedemo-wiring2.jpg │ │ │ │ │ ├── library.html │ │ │ │ │ ├── lock_8h.html │ │ │ │ │ ├── malloc-std.png │ │ │ │ │ ├── malloc-x1.png │ │ │ │ │ ├── malloc-x2.png │ │ │ │ │ ├── malloc.html │ │ │ │ │ ├── math_8h.html │ │ │ │ │ ├── mem_sections.html │ │ │ │ │ ├── memccpy_8S.html │ │ │ │ │ ├── memchr_8S.html │ │ │ │ │ ├── memchr__P_8S.html │ │ │ │ │ ├── memcmp_8S.html │ │ │ │ │ ├── memcmp__P_8S.html │ │ │ │ │ ├── memcpy_8S.html │ │ │ │ │ ├── memcpy__P_8S.html │ │ │ │ │ ├── memmem_8S.html │ │ │ │ │ ├── memmove_8S.html │ │ │ │ │ ├── memrchr_8S.html │ │ │ │ │ ├── memrchr__P_8S.html │ │ │ │ │ ├── memset_8S.html │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── parity_8h.html │ │ │ │ │ ├── pgmspace.html │ │ │ │ │ ├── pgmspace_8h.html │ │ │ │ │ ├── porting.html │ │ │ │ │ ├── power_8h.html │ │ │ │ │ ├── release_method.html │ │ │ │ │ ├── releases.png │ │ │ │ │ ├── setbaud_8h.html │ │ │ │ │ ├── setjmp_8h.html │ │ │ │ │ ├── sleep_8h.html │ │ │ │ │ ├── stdint_8h.html │ │ │ │ │ ├── stdio_8h.html │ │ │ │ │ ├── stdiodemo-setup.jpg │ │ │ │ │ ├── stdlib_8h.html │ │ │ │ │ ├── strcasecmp_8S.html │ │ │ │ │ ├── strcasecmp__P_8S.html │ │ │ │ │ ├── strcasestr_8S.html │ │ │ │ │ ├── strcat_8S.html │ │ │ │ │ ├── strcat__P_8S.html │ │ │ │ │ ├── strchr_8S.html │ │ │ │ │ ├── strchr__P_8S.html │ │ │ │ │ ├── strchrnul_8S.html │ │ │ │ │ ├── strchrnul__P_8S.html │ │ │ │ │ ├── strcmp_8S.html │ │ │ │ │ ├── strcmp__P_8S.html │ │ │ │ │ ├── strcpy_8S.html │ │ │ │ │ ├── strcpy__P_8S.html │ │ │ │ │ ├── strcspn_8S.html │ │ │ │ │ ├── strcspn__P_8S.html │ │ │ │ │ ├── strdup_8c.html │ │ │ │ │ ├── string_8h.html │ │ │ │ │ ├── strlcat_8S.html │ │ │ │ │ ├── strlcat__P_8S.html │ │ │ │ │ ├── strlcpy_8S.html │ │ │ │ │ ├── strlcpy__P_8S.html │ │ │ │ │ ├── strlen_8S.html │ │ │ │ │ ├── strlen__P_8S.html │ │ │ │ │ ├── strlwr_8S.html │ │ │ │ │ ├── strncasecmp_8S.html │ │ │ │ │ ├── strncasecmp__P_8S.html │ │ │ │ │ ├── strncat_8S.html │ │ │ │ │ ├── strncat__P_8S.html │ │ │ │ │ ├── strncmp_8S.html │ │ │ │ │ ├── strncmp__P_8S.html │ │ │ │ │ ├── strncpy_8S.html │ │ │ │ │ ├── strncpy__P_8S.html │ │ │ │ │ ├── strnlen_8S.html │ │ │ │ │ ├── strnlen__P_8S.html │ │ │ │ │ ├── strpbrk_8S.html │ │ │ │ │ ├── strpbrk__P_8S.html │ │ │ │ │ ├── strrchr_8S.html │ │ │ │ │ ├── strrchr__P_8S.html │ │ │ │ │ ├── strrev_8S.html │ │ │ │ │ ├── strsep_8S.html │ │ │ │ │ ├── strsep__P_8S.html │ │ │ │ │ ├── strspn_8S.html │ │ │ │ │ ├── strspn__P_8S.html │ │ │ │ │ ├── strstr_8S.html │ │ │ │ │ ├── strstr__P_8S.html │ │ │ │ │ ├── strtok_8c.html │ │ │ │ │ ├── strtok__r_8S.html │ │ │ │ │ ├── structdiv__t.html │ │ │ │ │ ├── structldiv__t.html │ │ │ │ │ ├── strupr_8S.html │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── todo.html │ │ │ │ │ ├── using_avrprog.html │ │ │ │ │ ├── using_tools.html │ │ │ │ │ ├── util_2twi_8h.html │ │ │ │ │ └── wdt_8h.html │ │ │ │ ├── examples │ │ │ │ │ ├── asmdemo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── asmdemo.c │ │ │ │ │ │ ├── isrs.S │ │ │ │ │ │ └── project.h │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── demo.c │ │ │ │ │ │ └── iocompat.h │ │ │ │ │ ├── largedemo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── largedemo.c │ │ │ │ │ ├── stdiodemo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── defines.h │ │ │ │ │ │ ├── hd44780.c │ │ │ │ │ │ ├── hd44780.h │ │ │ │ │ │ ├── lcd.c │ │ │ │ │ │ ├── lcd.h │ │ │ │ │ │ ├── stdiodemo.c │ │ │ │ │ │ ├── uart.c │ │ │ │ │ │ └── uart.h │ │ │ │ │ └── twitest │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── twitest.c │ │ │ │ └── man │ │ │ │ │ └── man3 │ │ │ │ │ ├── ATOMIC_BLOCK.3 │ │ │ │ │ ├── ATOMIC_FORCEON.3 │ │ │ │ │ ├── ATOMIC_RESTORESTATE.3 │ │ │ │ │ ├── BADISR_vect.3 │ │ │ │ │ ├── BAUD_TOL.3 │ │ │ │ │ ├── BLB01.3 │ │ │ │ │ ├── BLB02.3 │ │ │ │ │ ├── BLB11.3 │ │ │ │ │ ├── BLB12.3 │ │ │ │ │ ├── BOOTLOADER_SECTION.3 │ │ │ │ │ ├── DTOSTR_ALWAYS_SIGN.3 │ │ │ │ │ ├── DTOSTR_PLUS_SIGN.3 │ │ │ │ │ ├── DTOSTR_UPPERCASE.3 │ │ │ │ │ ├── EDOM.3 │ │ │ │ │ ├── EEMEM.3 │ │ │ │ │ ├── EMPTY_INTERRUPT.3 │ │ │ │ │ ├── EOF.3 │ │ │ │ │ ├── ERANGE.3 │ │ │ │ │ ├── FAQ.3 │ │ │ │ │ ├── FDEV_SETUP_STREAM.3 │ │ │ │ │ ├── FILE.3 │ │ │ │ │ ├── FUSEMEM.3 │ │ │ │ │ ├── FUSES.3 │ │ │ │ │ ├── F_CPU.3 │ │ │ │ │ ├── GET_EXTENDED_FUSE_BITS.3 │ │ │ │ │ ├── GET_HIGH_FUSE_BITS.3 │ │ │ │ │ ├── GET_LOCK_BITS.3 │ │ │ │ │ ├── GET_LOW_FUSE_BITS.3 │ │ │ │ │ ├── INFINITY.3 │ │ │ │ │ ├── INT16_C.3 │ │ │ │ │ ├── INT16_MAX.3 │ │ │ │ │ ├── INT16_MIN.3 │ │ │ │ │ ├── INT32_C.3 │ │ │ │ │ ├── INT32_MAX.3 │ │ │ │ │ ├── INT32_MIN.3 │ │ │ │ │ ├── INT64_C.3 │ │ │ │ │ ├── INT64_MAX.3 │ │ │ │ │ ├── INT64_MIN.3 │ │ │ │ │ ├── INT8_C.3 │ │ │ │ │ ├── INT8_MAX.3 │ │ │ │ │ ├── INT8_MIN.3 │ │ │ │ │ ├── INTERRUPT.3 │ │ │ │ │ ├── INTMAX_C.3 │ │ │ │ │ ├── INTMAX_MAX.3 │ │ │ │ │ ├── INTMAX_MIN.3 │ │ │ │ │ ├── INTPTR_MAX.3 │ │ │ │ │ ├── INTPTR_MIN.3 │ │ │ │ │ ├── INT_FAST16_MAX.3 │ │ │ │ │ ├── INT_FAST16_MIN.3 │ │ │ │ │ ├── INT_FAST32_MAX.3 │ │ │ │ │ ├── INT_FAST32_MIN.3 │ │ │ │ │ ├── INT_FAST64_MAX.3 │ │ │ │ │ ├── INT_FAST64_MIN.3 │ │ │ │ │ ├── INT_FAST8_MAX.3 │ │ │ │ │ ├── INT_FAST8_MIN.3 │ │ │ │ │ ├── INT_LEAST16_MAX.3 │ │ │ │ │ ├── INT_LEAST16_MIN.3 │ │ │ │ │ ├── INT_LEAST32_MAX.3 │ │ │ │ │ ├── INT_LEAST32_MIN.3 │ │ │ │ │ ├── INT_LEAST64_MAX.3 │ │ │ │ │ ├── INT_LEAST64_MIN.3 │ │ │ │ │ ├── INT_LEAST8_MAX.3 │ │ │ │ │ ├── INT_LEAST8_MIN.3 │ │ │ │ │ ├── ISR.3 │ │ │ │ │ ├── ISR_ALIAS.3 │ │ │ │ │ ├── ISR_ALIASOF.3 │ │ │ │ │ ├── ISR_BLOCK.3 │ │ │ │ │ ├── ISR_NAKED.3 │ │ │ │ │ ├── ISR_NOBLOCK.3 │ │ │ │ │ ├── LOCKBITS.3 │ │ │ │ │ ├── LOCKBITS_DEFAULT.3 │ │ │ │ │ ├── LOCKMEM.3 │ │ │ │ │ ├── M_PI.3 │ │ │ │ │ ├── M_SQRT2.3 │ │ │ │ │ ├── NAN.3 │ │ │ │ │ ├── NONATOMIC_BLOCK.3 │ │ │ │ │ ├── NONATOMIC_FORCEOFF.3 │ │ │ │ │ ├── NONATOMIC_RESTORESTATE.3 │ │ │ │ │ ├── PGM_P.3 │ │ │ │ │ ├── PGM_VOID_P.3 │ │ │ │ │ ├── PRIX16.3 │ │ │ │ │ ├── PRIX32.3 │ │ │ │ │ ├── PRIX8.3 │ │ │ │ │ ├── PRIXFAST16.3 │ │ │ │ │ ├── PRIXFAST32.3 │ │ │ │ │ ├── PRIXFAST8.3 │ │ │ │ │ ├── PRIXLEAST16.3 │ │ │ │ │ ├── PRIXLEAST32.3 │ │ │ │ │ ├── PRIXLEAST8.3 │ │ │ │ │ ├── PRIXPTR.3 │ │ │ │ │ ├── PRId16.3 │ │ │ │ │ ├── PRId32.3 │ │ │ │ │ ├── PRId8.3 │ │ │ │ │ ├── PRIdFAST16.3 │ │ │ │ │ ├── PRIdFAST32.3 │ │ │ │ │ ├── PRIdFAST8.3 │ │ │ │ │ ├── PRIdLEAST16.3 │ │ │ │ │ ├── PRIdLEAST32.3 │ │ │ │ │ ├── PRIdLEAST8.3 │ │ │ │ │ ├── PRIdPTR.3 │ │ │ │ │ ├── PRIi16.3 │ │ │ │ │ ├── PRIi32.3 │ │ │ │ │ ├── PRIi8.3 │ │ │ │ │ ├── PRIiFAST16.3 │ │ │ │ │ ├── PRIiFAST32.3 │ │ │ │ │ ├── PRIiFAST8.3 │ │ │ │ │ ├── PRIiLEAST16.3 │ │ │ │ │ ├── PRIiLEAST32.3 │ │ │ │ │ ├── PRIiLEAST8.3 │ │ │ │ │ ├── PRIiPTR.3 │ │ │ │ │ ├── PRIo16.3 │ │ │ │ │ ├── PRIo32.3 │ │ │ │ │ ├── PRIo8.3 │ │ │ │ │ ├── PRIoFAST16.3 │ │ │ │ │ ├── PRIoFAST32.3 │ │ │ │ │ ├── PRIoFAST8.3 │ │ │ │ │ ├── PRIoLEAST16.3 │ │ │ │ │ ├── PRIoLEAST32.3 │ │ │ │ │ ├── PRIoLEAST8.3 │ │ │ │ │ ├── PRIoPTR.3 │ │ │ │ │ ├── PRIu16.3 │ │ │ │ │ ├── PRIu32.3 │ │ │ │ │ ├── PRIu8.3 │ │ │ │ │ ├── PRIuFAST16.3 │ │ │ │ │ ├── PRIuFAST32.3 │ │ │ │ │ ├── PRIuFAST8.3 │ │ │ │ │ ├── PRIuLEAST16.3 │ │ │ │ │ ├── PRIuLEAST32.3 │ │ │ │ │ ├── PRIuLEAST8.3 │ │ │ │ │ ├── PRIuPTR.3 │ │ │ │ │ ├── PROGMEM.3 │ │ │ │ │ ├── PSTR.3 │ │ │ │ │ ├── PTRDIFF_MAX.3 │ │ │ │ │ ├── PTRDIFF_MIN.3 │ │ │ │ │ ├── RANDOM_MAX.3 │ │ │ │ │ ├── RAND_MAX.3 │ │ │ │ │ ├── SCNd16.3 │ │ │ │ │ ├── SCNd32.3 │ │ │ │ │ ├── SCNdFAST16.3 │ │ │ │ │ ├── SCNdFAST32.3 │ │ │ │ │ ├── SCNdLEAST16.3 │ │ │ │ │ ├── SCNdLEAST32.3 │ │ │ │ │ ├── SCNdPTR.3 │ │ │ │ │ ├── SCNi16.3 │ │ │ │ │ ├── SCNi32.3 │ │ │ │ │ ├── SCNiFAST16.3 │ │ │ │ │ ├── SCNiFAST32.3 │ │ │ │ │ ├── SCNiLEAST16.3 │ │ │ │ │ ├── SCNiLEAST32.3 │ │ │ │ │ ├── SCNiPTR.3 │ │ │ │ │ ├── SCNo16.3 │ │ │ │ │ ├── SCNo32.3 │ │ │ │ │ ├── SCNoFAST16.3 │ │ │ │ │ ├── SCNoFAST32.3 │ │ │ │ │ ├── SCNoLEAST16.3 │ │ │ │ │ ├── SCNoLEAST32.3 │ │ │ │ │ ├── SCNoPTR.3 │ │ │ │ │ ├── SCNu16.3 │ │ │ │ │ ├── SCNu32.3 │ │ │ │ │ ├── SCNuFAST16.3 │ │ │ │ │ ├── SCNuFAST32.3 │ │ │ │ │ ├── SCNuLEAST16.3 │ │ │ │ │ ├── SCNuLEAST32.3 │ │ │ │ │ ├── SCNuPTR.3 │ │ │ │ │ ├── SCNx16.3 │ │ │ │ │ ├── SCNx32.3 │ │ │ │ │ ├── SCNxFAST16.3 │ │ │ │ │ ├── SCNxFAST32.3 │ │ │ │ │ ├── SCNxLEAST16.3 │ │ │ │ │ ├── SCNxLEAST32.3 │ │ │ │ │ ├── SCNxPTR.3 │ │ │ │ │ ├── SEEK_CUR.3 │ │ │ │ │ ├── SEEK_END.3 │ │ │ │ │ ├── SEEK_SET.3 │ │ │ │ │ ├── SIGNAL.3 │ │ │ │ │ ├── SIG_ATOMIC_MAX.3 │ │ │ │ │ ├── SIG_ATOMIC_MIN.3 │ │ │ │ │ ├── SIZE_MAX.3 │ │ │ │ │ ├── TW_BUS_ERROR.3 │ │ │ │ │ ├── TW_MR_ARB_LOST.3 │ │ │ │ │ ├── TW_MR_DATA_ACK.3 │ │ │ │ │ ├── TW_MR_DATA_NACK.3 │ │ │ │ │ ├── TW_MR_SLA_ACK.3 │ │ │ │ │ ├── TW_MR_SLA_NACK.3 │ │ │ │ │ ├── TW_MT_ARB_LOST.3 │ │ │ │ │ ├── TW_MT_DATA_ACK.3 │ │ │ │ │ ├── TW_MT_DATA_NACK.3 │ │ │ │ │ ├── TW_MT_SLA_ACK.3 │ │ │ │ │ ├── TW_MT_SLA_NACK.3 │ │ │ │ │ ├── TW_NO_INFO.3 │ │ │ │ │ ├── TW_READ.3 │ │ │ │ │ ├── TW_REP_START.3 │ │ │ │ │ ├── TW_SR_ARB_LOST_GCALL_ACK.3 │ │ │ │ │ ├── TW_SR_ARB_LOST_SLA_ACK.3 │ │ │ │ │ ├── TW_SR_DATA_ACK.3 │ │ │ │ │ ├── TW_SR_DATA_NACK.3 │ │ │ │ │ ├── TW_SR_GCALL_ACK.3 │ │ │ │ │ ├── TW_SR_GCALL_DATA_ACK.3 │ │ │ │ │ ├── TW_SR_GCALL_DATA_NACK.3 │ │ │ │ │ ├── TW_SR_SLA_ACK.3 │ │ │ │ │ ├── TW_SR_STOP.3 │ │ │ │ │ ├── TW_START.3 │ │ │ │ │ ├── TW_STATUS.3 │ │ │ │ │ ├── TW_STATUS_MASK.3 │ │ │ │ │ ├── TW_ST_ARB_LOST_SLA_ACK.3 │ │ │ │ │ ├── TW_ST_DATA_ACK.3 │ │ │ │ │ ├── TW_ST_DATA_NACK.3 │ │ │ │ │ ├── TW_ST_LAST_DATA.3 │ │ │ │ │ ├── TW_ST_SLA_ACK.3 │ │ │ │ │ ├── TW_WRITE.3 │ │ │ │ │ ├── UBRRH_VALUE.3 │ │ │ │ │ ├── UBRRL_VALUE.3 │ │ │ │ │ ├── UBRR_VALUE.3 │ │ │ │ │ ├── UINT16_C.3 │ │ │ │ │ ├── UINT16_MAX.3 │ │ │ │ │ ├── UINT32_C.3 │ │ │ │ │ ├── UINT32_MAX.3 │ │ │ │ │ ├── UINT64_C.3 │ │ │ │ │ ├── UINT64_MAX.3 │ │ │ │ │ ├── UINT8_C.3 │ │ │ │ │ ├── UINT8_MAX.3 │ │ │ │ │ ├── UINTMAX_C.3 │ │ │ │ │ ├── UINTMAX_MAX.3 │ │ │ │ │ ├── UINTPTR_MAX.3 │ │ │ │ │ ├── UINT_FAST16_MAX.3 │ │ │ │ │ ├── UINT_FAST32_MAX.3 │ │ │ │ │ ├── UINT_FAST64_MAX.3 │ │ │ │ │ ├── UINT_FAST8_MAX.3 │ │ │ │ │ ├── UINT_LEAST16_MAX.3 │ │ │ │ │ ├── UINT_LEAST32_MAX.3 │ │ │ │ │ ├── UINT_LEAST64_MAX.3 │ │ │ │ │ ├── UINT_LEAST8_MAX.3 │ │ │ │ │ ├── USE_2X.3 │ │ │ │ │ ├── WDTO_120MS.3 │ │ │ │ │ ├── WDTO_15MS.3 │ │ │ │ │ ├── WDTO_1S.3 │ │ │ │ │ ├── WDTO_250MS.3 │ │ │ │ │ ├── WDTO_2S.3 │ │ │ │ │ ├── WDTO_30MS.3 │ │ │ │ │ ├── WDTO_4S.3 │ │ │ │ │ ├── WDTO_500MS.3 │ │ │ │ │ ├── WDTO_60MS.3 │ │ │ │ │ ├── WDTO_8S.3 │ │ │ │ │ ├── _AVR_BOOT_H_.3 │ │ │ │ │ ├── _AVR_FUSE_H_.3 │ │ │ │ │ ├── _AVR_LOCK_H_.3 │ │ │ │ │ ├── _AVR_POWER_H_.3 │ │ │ │ │ ├── _AVR_SLEEP_H_.3 │ │ │ │ │ ├── _BV.3 │ │ │ │ │ ├── _EEGET.3 │ │ │ │ │ ├── _EEPUT.3 │ │ │ │ │ ├── _FDEV_EOF.3 │ │ │ │ │ ├── _FDEV_ERR.3 │ │ │ │ │ ├── _FDEV_SETUP_READ.3 │ │ │ │ │ ├── _FDEV_SETUP_RW.3 │ │ │ │ │ ├── _FDEV_SETUP_WRITE.3 │ │ │ │ │ ├── _FFS.3 │ │ │ │ │ ├── _SLEEP_CONTROL_REG.3 │ │ │ │ │ ├── _SLEEP_ENABLE_MASK.3 │ │ │ │ │ ├── _STDIO_H_.3 │ │ │ │ │ ├── _STDLIB_H_.3 │ │ │ │ │ ├── _STRING_H_.3 │ │ │ │ │ ├── _UTIL_ATOMIC_H_.3 │ │ │ │ │ ├── _UTIL_DELAY_BASIC_H_.3 │ │ │ │ │ ├── _UTIL_DELAY_H_.3 │ │ │ │ │ ├── _UTIL_TWI_H_.3 │ │ │ │ │ ├── _WD_CHANGE_BIT.3 │ │ │ │ │ ├── _WD_CONTROL_REG.3 │ │ │ │ │ ├── _WD_PS3_MASK.3 │ │ │ │ │ ├── __ATTR_NORETURN__.3 │ │ │ │ │ ├── __ATTR_PROGMEM__.3 │ │ │ │ │ ├── __ATTR_PURE__.3 │ │ │ │ │ ├── __AVR_LIBC_DATE_.3 │ │ │ │ │ ├── __AVR_LIBC_DATE_STRING__.3 │ │ │ │ │ ├── __AVR_LIBC_MAJOR__.3 │ │ │ │ │ ├── __AVR_LIBC_MINOR__.3 │ │ │ │ │ ├── __AVR_LIBC_REVISION__.3 │ │ │ │ │ ├── __AVR_LIBC_VERSION_STRING__.3 │ │ │ │ │ ├── __AVR_LIBC_VERSION__.3 │ │ │ │ │ ├── __BOOT_LOCK_BITS_SET.3 │ │ │ │ │ ├── __BOOT_PAGE_ERASE.3 │ │ │ │ │ ├── __BOOT_PAGE_FILL.3 │ │ │ │ │ ├── __BOOT_PAGE_WRITE.3 │ │ │ │ │ ├── __BOOT_RWW_ENABLE.3 │ │ │ │ │ ├── __BOOT_SIGROW_READ.3 │ │ │ │ │ ├── __COMMON_ASB.3 │ │ │ │ │ ├── __COMMON_ASRE.3 │ │ │ │ │ ├── __CONCAT.3 │ │ │ │ │ ├── __CONCATenate.3 │ │ │ │ │ ├── __CTYPE_H_.3 │ │ │ │ │ ├── __ELPM.3 │ │ │ │ │ ├── __ELPM_classic__.3 │ │ │ │ │ ├── __ELPM_dword.3 │ │ │ │ │ ├── __ELPM_dword_classic__.3 │ │ │ │ │ ├── __ELPM_dword_enhanced__.3 │ │ │ │ │ ├── __ELPM_enhanced__.3 │ │ │ │ │ ├── __ELPM_float.3 │ │ │ │ │ ├── __ELPM_float_classic__.3 │ │ │ │ │ ├── __ELPM_float_enhanced__.3 │ │ │ │ │ ├── __ELPM_word.3 │ │ │ │ │ ├── __ELPM_word_classic__.3 │ │ │ │ │ ├── __ELPM_word_enhanced__.3 │ │ │ │ │ ├── __ERRNO_H_.3 │ │ │ │ │ ├── __INTR_ATTRS.3 │ │ │ │ │ ├── __LPM.3 │ │ │ │ │ ├── __LPM_classic__.3 │ │ │ │ │ ├── __LPM_dword.3 │ │ │ │ │ ├── __LPM_dword_classic__.3 │ │ │ │ │ ├── __LPM_dword_enhanced__.3 │ │ │ │ │ ├── __LPM_enhanced__.3 │ │ │ │ │ ├── __LPM_float.3 │ │ │ │ │ ├── __LPM_float_classic__.3 │ │ │ │ │ ├── __LPM_float_enhanced__.3 │ │ │ │ │ ├── __LPM_word.3 │ │ │ │ │ ├── __LPM_word_classic__.3 │ │ │ │ │ ├── __LPM_word_enhanced__.3 │ │ │ │ │ ├── __PGMSPACE_H_.3 │ │ │ │ │ ├── __SETJMP_H_.3 │ │ │ │ │ ├── __USING_MINT8.3 │ │ │ │ │ ├── __boot_lock_bits_set_alternate.3 │ │ │ │ │ ├── __boot_page_erase_alternate.3 │ │ │ │ │ ├── __boot_page_erase_extended.3 │ │ │ │ │ ├── __boot_page_erase_normal.3 │ │ │ │ │ ├── __boot_page_fill_alternate.3 │ │ │ │ │ ├── __boot_page_fill_extended.3 │ │ │ │ │ ├── __boot_page_fill_normal.3 │ │ │ │ │ ├── __boot_page_write_alternate.3 │ │ │ │ │ ├── __boot_page_write_extended.3 │ │ │ │ │ ├── __boot_page_write_normal.3 │ │ │ │ │ ├── __boot_rww_enable_alternate.3 │ │ │ │ │ ├── __compar_fn_t.3 │ │ │ │ │ ├── __malloc_heap_end.3 │ │ │ │ │ ├── __malloc_heap_start.3 │ │ │ │ │ ├── __malloc_margin.3 │ │ │ │ │ ├── __need_NULL.3 │ │ │ │ │ ├── __need_size_t.3 │ │ │ │ │ ├── __need_wchar_t.3 │ │ │ │ │ ├── __ptr_t.3 │ │ │ │ │ ├── _crc16_update.3 │ │ │ │ │ ├── _crc_ccitt_update.3 │ │ │ │ │ ├── _crc_ibutton_update.3 │ │ │ │ │ ├── _crc_xmodem_update.3 │ │ │ │ │ ├── _delay_loop_1.3 │ │ │ │ │ ├── _delay_loop_2.3 │ │ │ │ │ ├── _delay_ms.3 │ │ │ │ │ ├── _delay_us.3 │ │ │ │ │ ├── abort.3 │ │ │ │ │ ├── abs.3 │ │ │ │ │ ├── acks.3 │ │ │ │ │ ├── acos.3 │ │ │ │ │ ├── alloca.3 │ │ │ │ │ ├── asin.3 │ │ │ │ │ ├── asmdemo.3 │ │ │ │ │ ├── assembler.3 │ │ │ │ │ ├── assert.3 │ │ │ │ │ ├── assert.h.3 │ │ │ │ │ ├── atan.3 │ │ │ │ │ ├── atan2.3 │ │ │ │ │ ├── atof.3 │ │ │ │ │ ├── atoi.3 │ │ │ │ │ ├── atoi.S.3 │ │ │ │ │ ├── atol.3 │ │ │ │ │ ├── atol.S.3 │ │ │ │ │ ├── atomic.h.3 │ │ │ │ │ ├── avr_assert.3 │ │ │ │ │ ├── avr_boot.3 │ │ │ │ │ ├── avr_eeprom.3 │ │ │ │ │ ├── avr_errno.3 │ │ │ │ │ ├── avr_fuse.3 │ │ │ │ │ ├── avr_interrupts.3 │ │ │ │ │ ├── avr_inttypes.3 │ │ │ │ │ ├── avr_io.3 │ │ │ │ │ ├── avr_lock.3 │ │ │ │ │ ├── avr_math.3 │ │ │ │ │ ├── avr_pgmspace.3 │ │ │ │ │ ├── avr_power.3 │ │ │ │ │ ├── avr_sfr.3 │ │ │ │ │ ├── avr_sfr_notes.3 │ │ │ │ │ ├── avr_sleep.3 │ │ │ │ │ ├── avr_stdint.3 │ │ │ │ │ ├── avr_stdio.3 │ │ │ │ │ ├── avr_stdlib.3 │ │ │ │ │ ├── avr_string.3 │ │ │ │ │ ├── avr_version.3 │ │ │ │ │ ├── avr_watchdog.3 │ │ │ │ │ ├── benchmarks.3 │ │ │ │ │ ├── bit_is_clear.3 │ │ │ │ │ ├── bit_is_set.3 │ │ │ │ │ ├── boot.h.3 │ │ │ │ │ ├── boot_is_spm_interrupt.3 │ │ │ │ │ ├── boot_lock_bits_set.3 │ │ │ │ │ ├── boot_lock_bits_set_safe.3 │ │ │ │ │ ├── boot_lock_fuse_bits_get.3 │ │ │ │ │ ├── boot_page_erase.3 │ │ │ │ │ ├── boot_page_erase_safe.3 │ │ │ │ │ ├── boot_page_fill.3 │ │ │ │ │ ├── boot_page_fill_safe.3 │ │ │ │ │ ├── boot_page_write.3 │ │ │ │ │ ├── boot_page_write_safe.3 │ │ │ │ │ ├── boot_rww_busy.3 │ │ │ │ │ ├── boot_rww_enable.3 │ │ │ │ │ ├── boot_rww_enable_safe.3 │ │ │ │ │ ├── boot_signature_byte_get.3 │ │ │ │ │ ├── boot_spm_busy.3 │ │ │ │ │ ├── boot_spm_busy_wait.3 │ │ │ │ │ ├── boot_spm_interrupt_disable.3 │ │ │ │ │ ├── boot_spm_interrupt_enable.3 │ │ │ │ │ ├── bsearch.3 │ │ │ │ │ ├── calloc.3 │ │ │ │ │ ├── cbi.3 │ │ │ │ │ ├── ceil.3 │ │ │ │ │ ├── clearerr.3 │ │ │ │ │ ├── cli.3 │ │ │ │ │ ├── clock_prescale_get.3 │ │ │ │ │ ├── clock_prescale_set.3 │ │ │ │ │ ├── compat_ina90.3 │ │ │ │ │ ├── copysign.3 │ │ │ │ │ ├── cos.3 │ │ │ │ │ ├── cosh.3 │ │ │ │ │ ├── crc16.h.3 │ │ │ │ │ ├── ctype.3 │ │ │ │ │ ├── ctype.h.3 │ │ │ │ │ ├── delay.h.3 │ │ │ │ │ ├── delay_basic.h.3 │ │ │ │ │ ├── demo_project.3 │ │ │ │ │ ├── demos.3 │ │ │ │ │ ├── deprecated.3 │ │ │ │ │ ├── deprecated_items.3 │ │ │ │ │ ├── div.3 │ │ │ │ │ ├── div_t.3 │ │ │ │ │ ├── dtostre.3 │ │ │ │ │ ├── dtostrf.3 │ │ │ │ │ ├── eeprom_busy_wait.3 │ │ │ │ │ ├── eeprom_is_ready.3 │ │ │ │ │ ├── eeprom_read_block.3 │ │ │ │ │ ├── eeprom_read_byte.3 │ │ │ │ │ ├── eeprom_read_dword.3 │ │ │ │ │ ├── eeprom_read_word.3 │ │ │ │ │ ├── eeprom_write_block.3 │ │ │ │ │ ├── eeprom_write_byte.3 │ │ │ │ │ ├── eeprom_write_dword.3 │ │ │ │ │ ├── eeprom_write_word.3 │ │ │ │ │ ├── enable_external_int.3 │ │ │ │ │ ├── errno.3 │ │ │ │ │ ├── errno.h.3 │ │ │ │ │ ├── exit.3 │ │ │ │ │ ├── exp.3 │ │ │ │ │ ├── fabs.3 │ │ │ │ │ ├── fclose.3 │ │ │ │ │ ├── fdev_close.3 │ │ │ │ │ ├── fdev_get_udata.3 │ │ │ │ │ ├── fdev_set_udata.3 │ │ │ │ │ ├── fdevopen.3 │ │ │ │ │ ├── fdevopen.c.3 │ │ │ │ │ ├── fdim.3 │ │ │ │ │ ├── feof.3 │ │ │ │ │ ├── ferror.3 │ │ │ │ │ ├── fflush.3 │ │ │ │ │ ├── ffs.3 │ │ │ │ │ ├── ffs.S.3 │ │ │ │ │ ├── ffsl.3 │ │ │ │ │ ├── ffsl.S.3 │ │ │ │ │ ├── ffsll.3 │ │ │ │ │ ├── ffsll.S.3 │ │ │ │ │ ├── fgetc.3 │ │ │ │ │ ├── fgets.3 │ │ │ │ │ ├── floor.3 │ │ │ │ │ ├── fma.3 │ │ │ │ │ ├── fmax.3 │ │ │ │ │ ├── fmin.3 │ │ │ │ │ ├── fmod.3 │ │ │ │ │ ├── fprintf.3 │ │ │ │ │ ├── fprintf_P.3 │ │ │ │ │ ├── fputc.3 │ │ │ │ │ ├── fputs.3 │ │ │ │ │ ├── fputs_P.3 │ │ │ │ │ ├── fread.3 │ │ │ │ │ ├── free.3 │ │ │ │ │ ├── frexp.3 │ │ │ │ │ ├── fscanf.3 │ │ │ │ │ ├── fscanf_P.3 │ │ │ │ │ ├── fuse.h.3 │ │ │ │ │ ├── fwrite.3 │ │ │ │ │ ├── getc.3 │ │ │ │ │ ├── getchar.3 │ │ │ │ │ ├── gets.3 │ │ │ │ │ ├── hypot.3 │ │ │ │ │ ├── inb.3 │ │ │ │ │ ├── inline_asm.3 │ │ │ │ │ ├── inp.3 │ │ │ │ │ ├── install_tools.3 │ │ │ │ │ ├── int16_t.3 │ │ │ │ │ ├── int32_t.3 │ │ │ │ │ ├── int64_t.3 │ │ │ │ │ ├── int8_t.3 │ │ │ │ │ ├── int_farptr_t.3 │ │ │ │ │ ├── int_fast16_t.3 │ │ │ │ │ ├── int_fast32_t.3 │ │ │ │ │ ├── int_fast64_t.3 │ │ │ │ │ ├── int_fast8_t.3 │ │ │ │ │ ├── int_least16_t.3 │ │ │ │ │ ├── int_least32_t.3 │ │ │ │ │ ├── int_least64_t.3 │ │ │ │ │ ├── int_least8_t.3 │ │ │ │ │ ├── interrupt.h.3 │ │ │ │ │ ├── intmax_t.3 │ │ │ │ │ ├── intptr_t.3 │ │ │ │ │ ├── inttypes.h.3 │ │ │ │ │ ├── io.h.3 │ │ │ │ │ ├── isalnum.3 │ │ │ │ │ ├── isalpha.3 │ │ │ │ │ ├── isascii.3 │ │ │ │ │ ├── isblank.3 │ │ │ │ │ ├── iscntrl.3 │ │ │ │ │ ├── isdigit.3 │ │ │ │ │ ├── isfinite.3 │ │ │ │ │ ├── isgraph.3 │ │ │ │ │ ├── isinf.3 │ │ │ │ │ ├── islower.3 │ │ │ │ │ ├── isnan.3 │ │ │ │ │ ├── isprint.3 │ │ │ │ │ ├── ispunct.3 │ │ │ │ │ ├── isspace.3 │ │ │ │ │ ├── isupper.3 │ │ │ │ │ ├── isxdigit.3 │ │ │ │ │ ├── itoa.3 │ │ │ │ │ ├── labs.3 │ │ │ │ │ ├── largedemo.3 │ │ │ │ │ ├── ldexp.3 │ │ │ │ │ ├── ldiv.3 │ │ │ │ │ ├── ldiv_t.3 │ │ │ │ │ ├── library.3 │ │ │ │ │ ├── lock.h.3 │ │ │ │ │ ├── log.3 │ │ │ │ │ ├── log10.3 │ │ │ │ │ ├── longjmp.3 │ │ │ │ │ ├── loop_until_bit_is_clear.3 │ │ │ │ │ ├── loop_until_bit_is_set.3 │ │ │ │ │ ├── lrint.3 │ │ │ │ │ ├── lround.3 │ │ │ │ │ ├── ltoa.3 │ │ │ │ │ ├── malloc.3 │ │ │ │ │ ├── math.h.3 │ │ │ │ │ ├── mem_sections.3 │ │ │ │ │ ├── memccpy.3 │ │ │ │ │ ├── memccpy.S.3 │ │ │ │ │ ├── memchr.3 │ │ │ │ │ ├── memchr.S.3 │ │ │ │ │ ├── memchr_P.3 │ │ │ │ │ ├── memchr_P.S.3 │ │ │ │ │ ├── memcmp.3 │ │ │ │ │ ├── memcmp.S.3 │ │ │ │ │ ├── memcmp_P.3 │ │ │ │ │ ├── memcmp_P.S.3 │ │ │ │ │ ├── memcpy.3 │ │ │ │ │ ├── memcpy.S.3 │ │ │ │ │ ├── memcpy_P.3 │ │ │ │ │ ├── memcpy_P.S.3 │ │ │ │ │ ├── memmem.3 │ │ │ │ │ ├── memmem.S.3 │ │ │ │ │ ├── memmem_P.3 │ │ │ │ │ ├── memmove.3 │ │ │ │ │ ├── memmove.S.3 │ │ │ │ │ ├── memrchr.3 │ │ │ │ │ ├── memrchr.S.3 │ │ │ │ │ ├── memrchr_P.3 │ │ │ │ │ ├── memrchr_P.S.3 │ │ │ │ │ ├── memset.3 │ │ │ │ │ ├── memset.S.3 │ │ │ │ │ ├── modf.3 │ │ │ │ │ ├── outb.3 │ │ │ │ │ ├── outp.3 │ │ │ │ │ ├── overview.3 │ │ │ │ │ ├── p.3 │ │ │ │ │ ├── parity.h.3 │ │ │ │ │ ├── parity_even_bit.3 │ │ │ │ │ ├── pgm_read_byte.3 │ │ │ │ │ ├── pgm_read_byte_far.3 │ │ │ │ │ ├── pgm_read_byte_near.3 │ │ │ │ │ ├── pgm_read_dword.3 │ │ │ │ │ ├── pgm_read_dword_far.3 │ │ │ │ │ ├── pgm_read_dword_near.3 │ │ │ │ │ ├── pgm_read_float.3 │ │ │ │ │ ├── pgm_read_float_far.3 │ │ │ │ │ ├── pgm_read_float_near.3 │ │ │ │ │ ├── pgm_read_word.3 │ │ │ │ │ ├── pgm_read_word_far.3 │ │ │ │ │ ├── pgm_read_word_near.3 │ │ │ │ │ ├── pgmspace.3 │ │ │ │ │ ├── pgmspace.h.3 │ │ │ │ │ ├── porting.3 │ │ │ │ │ ├── pow.3 │ │ │ │ │ ├── power.h.3 │ │ │ │ │ ├── printf.3 │ │ │ │ │ ├── printf_P.3 │ │ │ │ │ ├── prog_char.3 │ │ │ │ │ ├── prog_int16_t.3 │ │ │ │ │ ├── prog_int32_t.3 │ │ │ │ │ ├── prog_int64_t.3 │ │ │ │ │ ├── prog_int8_t.3 │ │ │ │ │ ├── prog_uchar.3 │ │ │ │ │ ├── prog_uint16_t.3 │ │ │ │ │ ├── prog_uint32_t.3 │ │ │ │ │ ├── prog_uint64_t.3 │ │ │ │ │ ├── prog_uint8_t.3 │ │ │ │ │ ├── prog_void.3 │ │ │ │ │ ├── putc.3 │ │ │ │ │ ├── putchar.3 │ │ │ │ │ ├── puts.3 │ │ │ │ │ ├── puts_P.3 │ │ │ │ │ ├── qsort.3 │ │ │ │ │ ├── quot.3 │ │ │ │ │ ├── rand.3 │ │ │ │ │ ├── rand_r.3 │ │ │ │ │ ├── random.3 │ │ │ │ │ ├── random_r.3 │ │ │ │ │ ├── realloc.3 │ │ │ │ │ ├── release_method.3 │ │ │ │ │ ├── rem.3 │ │ │ │ │ ├── reti.3 │ │ │ │ │ ├── round.3 │ │ │ │ │ ├── sbi.3 │ │ │ │ │ ├── scanf.3 │ │ │ │ │ ├── scanf_P.3 │ │ │ │ │ ├── sei.3 │ │ │ │ │ ├── setbaud.h.3 │ │ │ │ │ ├── setjmp.3 │ │ │ │ │ ├── setjmp.h.3 │ │ │ │ │ ├── signbit.3 │ │ │ │ │ ├── sin.3 │ │ │ │ │ ├── sinh.3 │ │ │ │ │ ├── sleep.h.3 │ │ │ │ │ ├── sleep_cpu.3 │ │ │ │ │ ├── sleep_disable.3 │ │ │ │ │ ├── sleep_enable.3 │ │ │ │ │ ├── sleep_mode.3 │ │ │ │ │ ├── snprintf.3 │ │ │ │ │ ├── snprintf_P.3 │ │ │ │ │ ├── sprintf.3 │ │ │ │ │ ├── sprintf_P.3 │ │ │ │ │ ├── sqrt.3 │ │ │ │ │ ├── square.3 │ │ │ │ │ ├── srand.3 │ │ │ │ │ ├── srandom.3 │ │ │ │ │ ├── sscanf.3 │ │ │ │ │ ├── sscanf_P.3 │ │ │ │ │ ├── stderr.3 │ │ │ │ │ ├── stdin.3 │ │ │ │ │ ├── stdint.h.3 │ │ │ │ │ ├── stdio.h.3 │ │ │ │ │ ├── stdiodemo.3 │ │ │ │ │ ├── stdlib.h.3 │ │ │ │ │ ├── stdout.3 │ │ │ │ │ ├── strcasecmp.3 │ │ │ │ │ ├── strcasecmp.S.3 │ │ │ │ │ ├── strcasecmp_P.3 │ │ │ │ │ ├── strcasecmp_P.S.3 │ │ │ │ │ ├── strcasestr.3 │ │ │ │ │ ├── strcasestr.S.3 │ │ │ │ │ ├── strcasestr_P.3 │ │ │ │ │ ├── strcat.3 │ │ │ │ │ ├── strcat.S.3 │ │ │ │ │ ├── strcat_P.3 │ │ │ │ │ ├── strcat_P.S.3 │ │ │ │ │ ├── strchr.3 │ │ │ │ │ ├── strchr.S.3 │ │ │ │ │ ├── strchr_P.3 │ │ │ │ │ ├── strchr_P.S.3 │ │ │ │ │ ├── strchrnul.3 │ │ │ │ │ ├── strchrnul.S.3 │ │ │ │ │ ├── strchrnul_P.3 │ │ │ │ │ ├── strchrnul_P.S.3 │ │ │ │ │ ├── strcmp.3 │ │ │ │ │ ├── strcmp.S.3 │ │ │ │ │ ├── strcmp_P.3 │ │ │ │ │ ├── strcmp_P.S.3 │ │ │ │ │ ├── strcpy.3 │ │ │ │ │ ├── strcpy.S.3 │ │ │ │ │ ├── strcpy_P.3 │ │ │ │ │ ├── strcpy_P.S.3 │ │ │ │ │ ├── strcspn.3 │ │ │ │ │ ├── strcspn.S.3 │ │ │ │ │ ├── strcspn_P.3 │ │ │ │ │ ├── strcspn_P.S.3 │ │ │ │ │ ├── strdup.3 │ │ │ │ │ ├── strdup.c.3 │ │ │ │ │ ├── string.h.3 │ │ │ │ │ ├── strlcat.3 │ │ │ │ │ ├── strlcat.S.3 │ │ │ │ │ ├── strlcat_P.3 │ │ │ │ │ ├── strlcat_P.S.3 │ │ │ │ │ ├── strlcpy.3 │ │ │ │ │ ├── strlcpy.S.3 │ │ │ │ │ ├── strlcpy_P.3 │ │ │ │ │ ├── strlcpy_P.S.3 │ │ │ │ │ ├── strlen.3 │ │ │ │ │ ├── strlen.S.3 │ │ │ │ │ ├── strlen_P.3 │ │ │ │ │ ├── strlen_P.S.3 │ │ │ │ │ ├── strlwr.3 │ │ │ │ │ ├── strlwr.S.3 │ │ │ │ │ ├── strncasecmp.3 │ │ │ │ │ ├── strncasecmp.S.3 │ │ │ │ │ ├── strncasecmp_P.3 │ │ │ │ │ ├── strncasecmp_P.S.3 │ │ │ │ │ ├── strncat.3 │ │ │ │ │ ├── strncat.S.3 │ │ │ │ │ ├── strncat_P.3 │ │ │ │ │ ├── strncat_P.S.3 │ │ │ │ │ ├── strncmp.3 │ │ │ │ │ ├── strncmp.S.3 │ │ │ │ │ ├── strncmp_P.3 │ │ │ │ │ ├── strncmp_P.S.3 │ │ │ │ │ ├── strncpy.3 │ │ │ │ │ ├── strncpy.S.3 │ │ │ │ │ ├── strncpy_P.3 │ │ │ │ │ ├── strncpy_P.S.3 │ │ │ │ │ ├── strnlen.3 │ │ │ │ │ ├── strnlen.S.3 │ │ │ │ │ ├── strnlen_P.3 │ │ │ │ │ ├── strnlen_P.S.3 │ │ │ │ │ ├── strpbrk.3 │ │ │ │ │ ├── strpbrk.S.3 │ │ │ │ │ ├── strpbrk_P.3 │ │ │ │ │ ├── strpbrk_P.S.3 │ │ │ │ │ ├── strrchr.3 │ │ │ │ │ ├── strrchr.S.3 │ │ │ │ │ ├── strrchr_P.3 │ │ │ │ │ ├── strrchr_P.S.3 │ │ │ │ │ ├── strrev.3 │ │ │ │ │ ├── strrev.S.3 │ │ │ │ │ ├── strsep.3 │ │ │ │ │ ├── strsep.S.3 │ │ │ │ │ ├── strsep_P.3 │ │ │ │ │ ├── strsep_P.S.3 │ │ │ │ │ ├── strspn.3 │ │ │ │ │ ├── strspn.S.3 │ │ │ │ │ ├── strspn_P.3 │ │ │ │ │ ├── strspn_P.S.3 │ │ │ │ │ ├── strstr.3 │ │ │ │ │ ├── strstr.S.3 │ │ │ │ │ ├── strstr_P.3 │ │ │ │ │ ├── strstr_P.S.3 │ │ │ │ │ ├── strtod.3 │ │ │ │ │ ├── strtok.3 │ │ │ │ │ ├── strtok.c.3 │ │ │ │ │ ├── strtok_r.3 │ │ │ │ │ ├── strtok_r.S.3 │ │ │ │ │ ├── strtol.3 │ │ │ │ │ ├── strtoul.3 │ │ │ │ │ ├── strupr.3 │ │ │ │ │ ├── strupr.S.3 │ │ │ │ │ ├── tan.3 │ │ │ │ │ ├── tanh.3 │ │ │ │ │ ├── timer_enable_int.3 │ │ │ │ │ ├── toascii.3 │ │ │ │ │ ├── todo.3 │ │ │ │ │ ├── tolower.3 │ │ │ │ │ ├── toupper.3 │ │ │ │ │ ├── trunc.3 │ │ │ │ │ ├── twi_demo.3 │ │ │ │ │ ├── uint16_t.3 │ │ │ │ │ ├── uint32_t.3 │ │ │ │ │ ├── uint64_t.3 │ │ │ │ │ ├── uint8_t.3 │ │ │ │ │ ├── uint_farptr_t.3 │ │ │ │ │ ├── uint_fast16_t.3 │ │ │ │ │ ├── uint_fast32_t.3 │ │ │ │ │ ├── uint_fast64_t.3 │ │ │ │ │ ├── uint_fast8_t.3 │ │ │ │ │ ├── uint_least16_t.3 │ │ │ │ │ ├── uint_least32_t.3 │ │ │ │ │ ├── uint_least64_t.3 │ │ │ │ │ ├── uint_least8_t.3 │ │ │ │ │ ├── uintmax_t.3 │ │ │ │ │ ├── uintptr_t.3 │ │ │ │ │ ├── ultoa.3 │ │ │ │ │ ├── ungetc.3 │ │ │ │ │ ├── using_avrprog.3 │ │ │ │ │ ├── using_tools.3 │ │ │ │ │ ├── util_atomic.3 │ │ │ │ │ ├── util_crc.3 │ │ │ │ │ ├── util_delay.3 │ │ │ │ │ ├── util_delay_basic.3 │ │ │ │ │ ├── util_parity.3 │ │ │ │ │ ├── util_setbaud.3 │ │ │ │ │ ├── util_twi.3 │ │ │ │ │ ├── util_twi.h.3 │ │ │ │ │ ├── utoa.3 │ │ │ │ │ ├── vfprintf.3 │ │ │ │ │ ├── vfprintf_P.3 │ │ │ │ │ ├── vfscanf.3 │ │ │ │ │ ├── vfscanf_P.3 │ │ │ │ │ ├── vprintf.3 │ │ │ │ │ ├── vscanf.3 │ │ │ │ │ ├── vsnprintf.3 │ │ │ │ │ ├── vsnprintf_P.3 │ │ │ │ │ ├── vsprintf.3 │ │ │ │ │ ├── vsprintf_P.3 │ │ │ │ │ ├── wdt.h.3 │ │ │ │ │ ├── wdt_disable.3 │ │ │ │ │ ├── wdt_enable.3 │ │ │ │ │ └── wdt_reset.3 │ │ │ ├── avrdude │ │ │ │ └── avrdude.pdf │ │ │ ├── binutils │ │ │ │ ├── as.html │ │ │ │ │ ├── ABORT-_0028COFF_0029.html │ │ │ │ │ ├── ARC-Directives.html │ │ │ │ │ ├── ARC-Floating-Point.html │ │ │ │ │ ├── ARC-Opcodes.html │ │ │ │ │ ├── ARC-Options.html │ │ │ │ │ ├── ARC-Syntax.html │ │ │ │ │ ├── ARC_002dChars.html │ │ │ │ │ ├── ARC_002dDependent.html │ │ │ │ │ ├── ARC_002dRegs.html │ │ │ │ │ ├── ARM-Directives.html │ │ │ │ │ ├── ARM-Floating-Point.html │ │ │ │ │ ├── ARM-Mapping-Symbols.html │ │ │ │ │ ├── ARM-Opcodes.html │ │ │ │ │ ├── ARM-Options.html │ │ │ │ │ ├── ARM-Syntax.html │ │ │ │ │ ├── ARM-Unwinding-Tutorial.html │ │ │ │ │ ├── ARM_002dChars.html │ │ │ │ │ ├── ARM_002dDependent.html │ │ │ │ │ ├── ARM_002dRegs.html │ │ │ │ │ ├── ARM_002dRelocations.html │ │ │ │ │ ├── AS-Index.html │ │ │ │ │ ├── AVR-Opcodes.html │ │ │ │ │ ├── AVR-Options.html │ │ │ │ │ ├── AVR-Syntax.html │ │ │ │ │ ├── AVR_002dChars.html │ │ │ │ │ ├── AVR_002dDependent.html │ │ │ │ │ ├── AVR_002dModifiers.html │ │ │ │ │ ├── AVR_002dRegs.html │ │ │ │ │ ├── Abort.html │ │ │ │ │ ├── Absolute-Literals-Directive.html │ │ │ │ │ ├── Acknowledgements.html │ │ │ │ │ ├── Align.html │ │ │ │ │ ├── Alpha-Directives.html │ │ │ │ │ ├── Alpha-Floating-Point.html │ │ │ │ │ ├── Alpha-Notes.html │ │ │ │ │ ├── Alpha-Opcodes.html │ │ │ │ │ ├── Alpha-Options.html │ │ │ │ │ ├── Alpha-Syntax.html │ │ │ │ │ ├── Alpha_002dChars.html │ │ │ │ │ ├── Alpha_002dDependent.html │ │ │ │ │ ├── Alpha_002dRegs.html │ │ │ │ │ ├── Alpha_002dRelocs.html │ │ │ │ │ ├── Altmacro.html │ │ │ │ │ ├── Arguments.html │ │ │ │ │ ├── As-Sections.html │ │ │ │ │ ├── Ascii.html │ │ │ │ │ ├── Asciz.html │ │ │ │ │ ├── BFIN-Directives.html │ │ │ │ │ ├── BFIN-Syntax.html │ │ │ │ │ ├── BFIN_002dDependent.html │ │ │ │ │ ├── Balign.html │ │ │ │ │ ├── Bignums.html │ │ │ │ │ ├── Bug-Criteria.html │ │ │ │ │ ├── Bug-Reporting.html │ │ │ │ │ ├── Byte.html │ │ │ │ │ ├── CFI-directives.html │ │ │ │ │ ├── COFF-Symbols.html │ │ │ │ │ ├── CR16-Operand-Qualifiers.html │ │ │ │ │ ├── CR16_002dDependent.html │ │ │ │ │ ├── CRIS_002dChars.html │ │ │ │ │ ├── CRIS_002dDependent.html │ │ │ │ │ ├── CRIS_002dExpand.html │ │ │ │ │ ├── CRIS_002dOpts.html │ │ │ │ │ ├── CRIS_002dPic.html │ │ │ │ │ ├── CRIS_002dPseudos.html │ │ │ │ │ ├── CRIS_002dRegs.html │ │ │ │ │ ├── CRIS_002dSymbols.html │ │ │ │ │ ├── CRIS_002dSyntax.html │ │ │ │ │ ├── Characters.html │ │ │ │ │ ├── Chars.html │ │ │ │ │ ├── Comm.html │ │ │ │ │ ├── Command-Line.html │ │ │ │ │ ├── Comments.html │ │ │ │ │ ├── Compare_002dand_002dbranch_002di960.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── D.html │ │ │ │ │ ├── D10V_002dAddressing.html │ │ │ │ │ ├── D10V_002dChars.html │ │ │ │ │ ├── D10V_002dDependent.html │ │ │ │ │ ├── D10V_002dFloat.html │ │ │ │ │ ├── D10V_002dOpcodes.html │ │ │ │ │ ├── D10V_002dOpts.html │ │ │ │ │ ├── D10V_002dRegs.html │ │ │ │ │ ├── D10V_002dSize.html │ │ │ │ │ ├── D10V_002dSubs.html │ │ │ │ │ ├── D10V_002dSyntax.html │ │ │ │ │ ├── D10V_002dWord.html │ │ │ │ │ ├── D30V_002dAddressing.html │ │ │ │ │ ├── D30V_002dChars.html │ │ │ │ │ ├── D30V_002dDependent.html │ │ │ │ │ ├── D30V_002dFloat.html │ │ │ │ │ ├── D30V_002dGuarded.html │ │ │ │ │ ├── D30V_002dOpcodes.html │ │ │ │ │ ├── D30V_002dOpts.html │ │ │ │ │ ├── D30V_002dRegs.html │ │ │ │ │ ├── D30V_002dSize.html │ │ │ │ │ ├── D30V_002dSubs.html │ │ │ │ │ ├── D30V_002dSyntax.html │ │ │ │ │ ├── Data.html │ │ │ │ │ ├── Def.html │ │ │ │ │ ├── Defining-New-Object-Attributes.html │ │ │ │ │ ├── Density-Instructions.html │ │ │ │ │ ├── Deprecated.html │ │ │ │ │ ├── Desc.html │ │ │ │ │ ├── Dim.html │ │ │ │ │ ├── Directives_002di860.html │ │ │ │ │ ├── Directives_002di960.html │ │ │ │ │ ├── Dot.html │ │ │ │ │ ├── Double.html │ │ │ │ │ ├── ESA_002f390-Directives.html │ │ │ │ │ ├── ESA_002f390-Floating-Point.html │ │ │ │ │ ├── ESA_002f390-Notes.html │ │ │ │ │ ├── ESA_002f390-Opcodes.html │ │ │ │ │ ├── ESA_002f390-Options.html │ │ │ │ │ ├── ESA_002f390-Syntax.html │ │ │ │ │ ├── ESA_002f390_002dDependent.html │ │ │ │ │ ├── Eject.html │ │ │ │ │ ├── Else.html │ │ │ │ │ ├── Elseif.html │ │ │ │ │ ├── Empty-Exprs.html │ │ │ │ │ ├── End.html │ │ │ │ │ ├── Endef.html │ │ │ │ │ ├── Endfunc.html │ │ │ │ │ ├── Endif.html │ │ │ │ │ ├── Equ.html │ │ │ │ │ ├── Equiv.html │ │ │ │ │ ├── Eqv.html │ │ │ │ │ ├── Err.html │ │ │ │ │ ├── Error.html │ │ │ │ │ ├── Errors.html │ │ │ │ │ ├── Exitm.html │ │ │ │ │ ├── Expressions.html │ │ │ │ │ ├── Extern.html │ │ │ │ │ ├── Fail.html │ │ │ │ │ ├── File.html │ │ │ │ │ ├── Fill.html │ │ │ │ │ ├── Float.html │ │ │ │ │ ├── Floating-Point_002di960.html │ │ │ │ │ ├── Flonums.html │ │ │ │ │ ├── Func.html │ │ │ │ │ ├── GNU-Assembler.html │ │ │ │ │ ├── GNU-Free-Documentation-License.html │ │ │ │ │ ├── GNU-Object-Attributes.html │ │ │ │ │ ├── GREG_002dbase.html │ │ │ │ │ ├── Global.html │ │ │ │ │ ├── Gnu_005fattribute.html │ │ │ │ │ ├── H8_002f300-Directives.html │ │ │ │ │ ├── H8_002f300-Floating-Point.html │ │ │ │ │ ├── H8_002f300-Opcodes.html │ │ │ │ │ ├── H8_002f300-Options.html │ │ │ │ │ ├── H8_002f300-Syntax.html │ │ │ │ │ ├── H8_002f300_002dAddressing.html │ │ │ │ │ ├── H8_002f300_002dChars.html │ │ │ │ │ ├── H8_002f300_002dDependent.html │ │ │ │ │ ├── H8_002f300_002dRegs.html │ │ │ │ │ ├── HPPA-Directives.html │ │ │ │ │ ├── HPPA-Floating-Point.html │ │ │ │ │ ├── HPPA-Notes.html │ │ │ │ │ ├── HPPA-Opcodes.html │ │ │ │ │ ├── HPPA-Options.html │ │ │ │ │ ├── HPPA-Syntax.html │ │ │ │ │ ├── HPPA_002dDependent.html │ │ │ │ │ ├── Hidden.html │ │ │ │ │ ├── I.html │ │ │ │ │ ├── IA_002d64-Opcodes.html │ │ │ │ │ ├── IA_002d64-Options.html │ │ │ │ │ ├── IA_002d64-Syntax.html │ │ │ │ │ ├── IA_002d64_002dBits.html │ │ │ │ │ ├── IA_002d64_002dChars.html │ │ │ │ │ ├── IA_002d64_002dDependent.html │ │ │ │ │ ├── IA_002d64_002dRegs.html │ │ │ │ │ ├── IP2K_002dDependent.html │ │ │ │ │ ├── IP2K_002dOpts.html │ │ │ │ │ ├── Ident.html │ │ │ │ │ ├── If.html │ │ │ │ │ ├── Incbin.html │ │ │ │ │ ├── Include.html │ │ │ │ │ ├── Infix-Ops.html │ │ │ │ │ ├── Input-Files.html │ │ │ │ │ ├── Int.html │ │ │ │ │ ├── Integer-Exprs.html │ │ │ │ │ ├── Integers.html │ │ │ │ │ ├── Internal.html │ │ │ │ │ ├── Invoking.html │ │ │ │ │ ├── Irp.html │ │ │ │ │ ├── Irpc.html │ │ │ │ │ ├── K.html │ │ │ │ │ ├── L.html │ │ │ │ │ ├── LNS-directives.html │ │ │ │ │ ├── Labels.html │ │ │ │ │ ├── Lcomm.html │ │ │ │ │ ├── Ld-Sections.html │ │ │ │ │ ├── Lflags.html │ │ │ │ │ ├── Line.html │ │ │ │ │ ├── Linkonce.html │ │ │ │ │ ├── List.html │ │ │ │ │ ├── Literal-Directive.html │ │ │ │ │ ├── Literal-Position-Directive.html │ │ │ │ │ ├── Literal-Prefix-Directive.html │ │ │ │ │ ├── Ln.html │ │ │ │ │ ├── Long.html │ │ │ │ │ ├── Longcalls-Directive.html │ │ │ │ │ ├── M.html │ │ │ │ │ ├── M32C_002dDependent.html │ │ │ │ │ ├── M32C_002dModifiers.html │ │ │ │ │ ├── M32C_002dOpts.html │ │ │ │ │ ├── M32R_002dDependent.html │ │ │ │ │ ├── M32R_002dDirectives.html │ │ │ │ │ ├── M32R_002dOpts.html │ │ │ │ │ ├── M32R_002dWarnings.html │ │ │ │ │ ├── M68HC11_002dBranch.html │ │ │ │ │ ├── M68HC11_002dDependent.html │ │ │ │ │ ├── M68HC11_002dDirectives.html │ │ │ │ │ ├── M68HC11_002dFloat.html │ │ │ │ │ ├── M68HC11_002dModifiers.html │ │ │ │ │ ├── M68HC11_002dOpts.html │ │ │ │ │ ├── M68HC11_002dSyntax.html │ │ │ │ │ ├── M68HC11_002dopcodes.html │ │ │ │ │ ├── M68K_002dBranch.html │ │ │ │ │ ├── M68K_002dChars.html │ │ │ │ │ ├── M68K_002dDependent.html │ │ │ │ │ ├── M68K_002dDirectives.html │ │ │ │ │ ├── M68K_002dFloat.html │ │ │ │ │ ├── M68K_002dMoto_002dSyntax.html │ │ │ │ │ ├── M68K_002dOpts.html │ │ │ │ │ ├── M68K_002dSyntax.html │ │ │ │ │ ├── M68K_002dopcodes.html │ │ │ │ │ ├── MD.html │ │ │ │ │ ├── MIPS-ASE-instruction-generation-overrides.html │ │ │ │ │ ├── MIPS-ISA.html │ │ │ │ │ ├── MIPS-Object.html │ │ │ │ │ ├── MIPS-Opts.html │ │ │ │ │ ├── MIPS-Stabs.html │ │ │ │ │ ├── MIPS-autoextend.html │ │ │ │ │ ├── MIPS-floating_002dpoint.html │ │ │ │ │ ├── MIPS-insn.html │ │ │ │ │ ├── MIPS-option-stack.html │ │ │ │ │ ├── MIPS-symbol-sizes.html │ │ │ │ │ ├── MIPS_002dDependent.html │ │ │ │ │ ├── MMIX_002dChars.html │ │ │ │ │ ├── MMIX_002dDependent.html │ │ │ │ │ ├── MMIX_002dExpand.html │ │ │ │ │ ├── MMIX_002dOpts.html │ │ │ │ │ ├── MMIX_002dPseudos.html │ │ │ │ │ ├── MMIX_002dRegs.html │ │ │ │ │ ├── MMIX_002dSymbols.html │ │ │ │ │ ├── MMIX_002dSyntax.html │ │ │ │ │ ├── MMIX_002dbyte.html │ │ │ │ │ ├── MMIX_002dconstants.html │ │ │ │ │ ├── MMIX_002dgreg.html │ │ │ │ │ ├── MMIX_002dis.html │ │ │ │ │ ├── MMIX_002dloc.html │ │ │ │ │ ├── MMIX_002dlocal.html │ │ │ │ │ ├── MMIX_002dmmixal.html │ │ │ │ │ ├── MMIX_002dprefix.html │ │ │ │ │ ├── MMIX_002dspec.html │ │ │ │ │ ├── MRI.html │ │ │ │ │ ├── MSP430-Directives.html │ │ │ │ │ ├── MSP430-Floating-Point.html │ │ │ │ │ ├── MSP430-Opcodes.html │ │ │ │ │ ├── MSP430-Options.html │ │ │ │ │ ├── MSP430-Profiling-Capability.html │ │ │ │ │ ├── MSP430-Syntax.html │ │ │ │ │ ├── MSP430_002dChars.html │ │ │ │ │ ├── MSP430_002dDependent.html │ │ │ │ │ ├── MSP430_002dExt.html │ │ │ │ │ ├── MSP430_002dMacros.html │ │ │ │ │ ├── MSP430_002dRegs.html │ │ │ │ │ ├── Machine-Dependencies.html │ │ │ │ │ ├── Macro.html │ │ │ │ │ ├── Manual.html │ │ │ │ │ ├── Noaltmacro.html │ │ │ │ │ ├── Nolist.html │ │ │ │ │ ├── Notes_002di860.html │ │ │ │ │ ├── Numbers.html │ │ │ │ │ ├── Object-Attributes.html │ │ │ │ │ ├── Object-Formats.html │ │ │ │ │ ├── Object.html │ │ │ │ │ ├── Octa.html │ │ │ │ │ ├── Opcodes-for-i860.html │ │ │ │ │ ├── Opcodes-for-i960.html │ │ │ │ │ ├── Operators.html │ │ │ │ │ ├── Options_002di860.html │ │ │ │ │ ├── Options_002di960.html │ │ │ │ │ ├── Org.html │ │ │ │ │ ├── Overview.html │ │ │ │ │ ├── P2align.html │ │ │ │ │ ├── PDP_002d11_002dDependent.html │ │ │ │ │ ├── PDP_002d11_002dMnemonics.html │ │ │ │ │ ├── PDP_002d11_002dOptions.html │ │ │ │ │ ├── PDP_002d11_002dPseudos.html │ │ │ │ │ ├── PDP_002d11_002dSyntax.html │ │ │ │ │ ├── PDP_002d11_002dSynthetic.html │ │ │ │ │ ├── PJ-Options.html │ │ │ │ │ ├── PJ_002dDependent.html │ │ │ │ │ ├── PPC_002dDependent.html │ │ │ │ │ ├── PopSection.html │ │ │ │ │ ├── PowerPC_002dOpts.html │ │ │ │ │ ├── PowerPC_002dPseudo.html │ │ │ │ │ ├── Prefix-Ops.html │ │ │ │ │ ├── Preprocessing.html │ │ │ │ │ ├── Previous.html │ │ │ │ │ ├── Print.html │ │ │ │ │ ├── Protected.html │ │ │ │ │ ├── Pseudo-Ops.html │ │ │ │ │ ├── Psize.html │ │ │ │ │ ├── Purgem.html │ │ │ │ │ ├── PushSection.html │ │ │ │ │ ├── Quad.html │ │ │ │ │ ├── R.html │ │ │ │ │ ├── Reloc.html │ │ │ │ │ ├── Reporting-Bugs.html │ │ │ │ │ ├── Rept.html │ │ │ │ │ ├── SH-Directives.html │ │ │ │ │ ├── SH-Floating-Point.html │ │ │ │ │ ├── SH-Opcodes.html │ │ │ │ │ ├── SH-Options.html │ │ │ │ │ ├── SH-Syntax.html │ │ │ │ │ ├── SH64-Directives.html │ │ │ │ │ ├── SH64-Opcodes.html │ │ │ │ │ ├── SH64-Options.html │ │ │ │ │ ├── SH64-Syntax.html │ │ │ │ │ ├── SH64_002dAddressing.html │ │ │ │ │ ├── SH64_002dChars.html │ │ │ │ │ ├── SH64_002dDependent.html │ │ │ │ │ ├── SH64_002dRegs.html │ │ │ │ │ ├── SH_002dAddressing.html │ │ │ │ │ ├── SH_002dChars.html │ │ │ │ │ ├── SH_002dDependent.html │ │ │ │ │ ├── SH_002dRegs.html │ │ │ │ │ ├── SOM-Symbols.html │ │ │ │ │ ├── Sbttl.html │ │ │ │ │ ├── Schedule-Directive.html │ │ │ │ │ ├── Scl.html │ │ │ │ │ ├── Secs-Background.html │ │ │ │ │ ├── Section.html │ │ │ │ │ ├── Sections.html │ │ │ │ │ ├── Set.html │ │ │ │ │ ├── Setting-Symbols.html │ │ │ │ │ ├── Short.html │ │ │ │ │ ├── Single.html │ │ │ │ │ ├── Size.html │ │ │ │ │ ├── Skip.html │ │ │ │ │ ├── Sleb128.html │ │ │ │ │ ├── Space.html │ │ │ │ │ ├── Sparc_002dAligned_002dData.html │ │ │ │ │ ├── Sparc_002dChars.html │ │ │ │ │ ├── Sparc_002dConstants.html │ │ │ │ │ ├── Sparc_002dDependent.html │ │ │ │ │ ├── Sparc_002dDirectives.html │ │ │ │ │ ├── Sparc_002dFloat.html │ │ │ │ │ ├── Sparc_002dOpts.html │ │ │ │ │ ├── Sparc_002dRegs.html │ │ │ │ │ ├── Sparc_002dRelocs.html │ │ │ │ │ ├── Sparc_002dSize_002dTranslations.html │ │ │ │ │ ├── Sparc_002dSyntax.html │ │ │ │ │ ├── Stab.html │ │ │ │ │ ├── Statements.html │ │ │ │ │ ├── String.html │ │ │ │ │ ├── Strings.html │ │ │ │ │ ├── Struct.html │ │ │ │ │ ├── SubSection.html │ │ │ │ │ ├── Sub_002dSections.html │ │ │ │ │ ├── Symbol-Attributes.html │ │ │ │ │ ├── Symbol-Desc.html │ │ │ │ │ ├── Symbol-Intro.html │ │ │ │ │ ├── Symbol-Names.html │ │ │ │ │ ├── Symbol-Other.html │ │ │ │ │ ├── Symbol-Type.html │ │ │ │ │ ├── Symbol-Value.html │ │ │ │ │ ├── Symbols.html │ │ │ │ │ ├── Symver.html │ │ │ │ │ ├── Syntax.html │ │ │ │ │ ├── TIC54X_002dBlock.html │ │ │ │ │ ├── TIC54X_002dBuiltins.html │ │ │ │ │ ├── TIC54X_002dConstants.html │ │ │ │ │ ├── TIC54X_002dDependent.html │ │ │ │ │ ├── TIC54X_002dDirectives.html │ │ │ │ │ ├── TIC54X_002dEnv.html │ │ │ │ │ ├── TIC54X_002dExt.html │ │ │ │ │ ├── TIC54X_002dLocals.html │ │ │ │ │ ├── TIC54X_002dMMRegs.html │ │ │ │ │ ├── TIC54X_002dMacros.html │ │ │ │ │ ├── TIC54X_002dOpts.html │ │ │ │ │ ├── TIC54X_002dSubsyms.html │ │ │ │ │ ├── Tag.html │ │ │ │ │ ├── Text.html │ │ │ │ │ ├── Title.html │ │ │ │ │ ├── Transform-Directive.html │ │ │ │ │ ├── Type.html │ │ │ │ │ ├── Uleb128.html │ │ │ │ │ ├── V850-Directives.html │ │ │ │ │ ├── V850-Floating-Point.html │ │ │ │ │ ├── V850-Opcodes.html │ │ │ │ │ ├── V850-Options.html │ │ │ │ │ ├── V850-Syntax.html │ │ │ │ │ ├── V850_002dChars.html │ │ │ │ │ ├── V850_002dDependent.html │ │ │ │ │ ├── V850_002dRegs.html │ │ │ │ │ ├── VAX_002dOpts.html │ │ │ │ │ ├── VAX_002dbranch.html │ │ │ │ │ ├── VAX_002ddirectives.html │ │ │ │ │ ├── VAX_002dfloat.html │ │ │ │ │ ├── VAX_002dno.html │ │ │ │ │ ├── VAX_002dopcodes.html │ │ │ │ │ ├── VAX_002doperands.html │ │ │ │ │ ├── VTableEntry.html │ │ │ │ │ ├── VTableInherit.html │ │ │ │ │ ├── Val.html │ │ │ │ │ ├── Vax_002dDependent.html │ │ │ │ │ ├── Version.html │ │ │ │ │ ├── W.html │ │ │ │ │ ├── Warning.html │ │ │ │ │ ├── Weak.html │ │ │ │ │ ├── Weakref.html │ │ │ │ │ ├── Whitespace.html │ │ │ │ │ ├── Word.html │ │ │ │ │ ├── Xtensa-Automatic-Alignment.html │ │ │ │ │ ├── Xtensa-Branch-Relaxation.html │ │ │ │ │ ├── Xtensa-Call-Relaxation.html │ │ │ │ │ ├── Xtensa-Directives.html │ │ │ │ │ ├── Xtensa-Immediate-Relaxation.html │ │ │ │ │ ├── Xtensa-Opcodes.html │ │ │ │ │ ├── Xtensa-Optimizations.html │ │ │ │ │ ├── Xtensa-Options.html │ │ │ │ │ ├── Xtensa-Registers.html │ │ │ │ │ ├── Xtensa-Relaxation.html │ │ │ │ │ ├── Xtensa-Syntax.html │ │ │ │ │ ├── Xtensa_002dDependent.html │ │ │ │ │ ├── Z.html │ │ │ │ │ ├── Z80-Directives.html │ │ │ │ │ ├── Z80-Floating-Point.html │ │ │ │ │ ├── Z80-Opcodes.html │ │ │ │ │ ├── Z80-Options.html │ │ │ │ │ ├── Z80-Syntax.html │ │ │ │ │ ├── Z8000-Directives.html │ │ │ │ │ ├── Z8000-Opcodes.html │ │ │ │ │ ├── Z8000-Options.html │ │ │ │ │ ├── Z8000-Syntax.html │ │ │ │ │ ├── Z8000_002dAddressing.html │ │ │ │ │ ├── Z8000_002dChars.html │ │ │ │ │ ├── Z8000_002dDependent.html │ │ │ │ │ ├── Z8000_002dRegs.html │ │ │ │ │ ├── Z80_002dCase.html │ │ │ │ │ ├── Z80_002dChars.html │ │ │ │ │ ├── Z80_002dDependent.html │ │ │ │ │ ├── Z80_002dRegs.html │ │ │ │ │ ├── a.html │ │ │ │ │ ├── a_002eout-Symbols.html │ │ │ │ │ ├── alternate.html │ │ │ │ │ ├── arm_005ffnend.html │ │ │ │ │ ├── arm_005ffnstart.html │ │ │ │ │ ├── arm_005fmovsp.html │ │ │ │ │ ├── arm_005fpad.html │ │ │ │ │ ├── arm_005fsave.html │ │ │ │ │ ├── arm_005fsetfp.html │ │ │ │ │ ├── bss.html │ │ │ │ │ ├── callj_002di960.html │ │ │ │ │ ├── crisnous.html │ │ │ │ │ ├── crispic.html │ │ │ │ │ ├── f.html │ │ │ │ │ ├── hword.html │ │ │ │ │ ├── i386_002d16bit.html │ │ │ │ │ ├── i386_002dArch.html │ │ │ │ │ ├── i386_002dBugs.html │ │ │ │ │ ├── i386_002dDependent.html │ │ │ │ │ ├── i386_002dDirectives.html │ │ │ │ │ ├── i386_002dFloat.html │ │ │ │ │ ├── i386_002dJumps.html │ │ │ │ │ ├── i386_002dMemory.html │ │ │ │ │ ├── i386_002dMnemonics.html │ │ │ │ │ ├── i386_002dNotes.html │ │ │ │ │ ├── i386_002dOptions.html │ │ │ │ │ ├── i386_002dPrefixes.html │ │ │ │ │ ├── i386_002dRegs.html │ │ │ │ │ ├── i386_002dSIMD.html │ │ │ │ │ ├── i386_002dSyntax.html │ │ │ │ │ ├── i860_002dDependent.html │ │ │ │ │ ├── i960_002dDependent.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── listing.html │ │ │ │ │ ├── march_002doption.html │ │ │ │ │ ├── mmixsite.html │ │ │ │ │ ├── o.html │ │ │ │ │ ├── statistics.html │ │ │ │ │ ├── traditional_002dformat.html │ │ │ │ │ └── v.html │ │ │ │ ├── bfd.html │ │ │ │ │ ├── Adding-Symbols-to-the-Hash-Table.html │ │ │ │ │ ├── Adding-symbols-from-an-archive.html │ │ │ │ │ ├── Adding-symbols-from-an-object-file.html │ │ │ │ │ ├── Architectures.html │ │ │ │ │ ├── Archives.html │ │ │ │ │ ├── BFD-Index.html │ │ │ │ │ ├── BFD-back-ends.html │ │ │ │ │ ├── BFD-front-end.html │ │ │ │ │ ├── BFD-information-loss.html │ │ │ │ │ ├── Canonical-format.html │ │ │ │ │ ├── Core-Files.html │ │ │ │ │ ├── Creating-a-Linker-Hash-Table.html │ │ │ │ │ ├── Creating-and-Freeing-a-Hash-Table.html │ │ │ │ │ ├── Define-the-Derived-Structures.html │ │ │ │ │ ├── Deriving-a-New-Hash-Table-Type.html │ │ │ │ │ ├── Differing-file-formats.html │ │ │ │ │ ├── File-Caching.html │ │ │ │ │ ├── File-layout.html │ │ │ │ │ ├── Formats.html │ │ │ │ │ ├── GNU-Free-Documentation-License.html │ │ │ │ │ ├── Hash-Tables.html │ │ │ │ │ ├── History.html │ │ │ │ │ ├── How-It-Works.html │ │ │ │ │ ├── Information-provided-by-the-linker.html │ │ │ │ │ ├── Initialization.html │ │ │ │ │ ├── Internal.html │ │ │ │ │ ├── Linker-Functions.html │ │ │ │ │ ├── Looking-Up-or-Entering-a-String.html │ │ │ │ │ ├── Memory-Usage.html │ │ │ │ │ ├── Mini-Symbols.html │ │ │ │ │ ├── Opening-and-Closing.html │ │ │ │ │ ├── Overview.html │ │ │ │ │ ├── Performing-the-Final-Link.html │ │ │ │ │ ├── Reading-Symbols.html │ │ │ │ │ ├── Relocating-the-section-contents.html │ │ │ │ │ ├── Relocations.html │ │ │ │ │ ├── Section-Input.html │ │ │ │ │ ├── Section-Output.html │ │ │ │ │ ├── Sections.html │ │ │ │ │ ├── Symbol_002dtable.html │ │ │ │ │ ├── Symbols.html │ │ │ │ │ ├── Targets.html │ │ │ │ │ ├── Traversing-a-Hash-Table.html │ │ │ │ │ ├── What-BFD-Version-2-Can-Do.html │ │ │ │ │ ├── What-to-Put-Where.html │ │ │ │ │ ├── Write-Other-Derived-Routines.html │ │ │ │ │ ├── Write-the-Derived-Creation-Routine.html │ │ │ │ │ ├── Writing-Symbols.html │ │ │ │ │ ├── Writing-the-symbol-table.html │ │ │ │ │ ├── aout.html │ │ │ │ │ ├── bfd_005ftarget.html │ │ │ │ │ ├── coff.html │ │ │ │ │ ├── elf.html │ │ │ │ │ ├── howto-manager.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mmo-section-mapping.html │ │ │ │ │ ├── mmo.html │ │ │ │ │ ├── section-prototypes.html │ │ │ │ │ ├── symbol-handling-functions.html │ │ │ │ │ ├── typedef-arelent.html │ │ │ │ │ ├── typedef-asection.html │ │ │ │ │ └── typedef-asymbol.html │ │ │ │ ├── binutils.html │ │ │ │ │ ├── Architecture-Selection.html │ │ │ │ │ ├── Binutils-Index.html │ │ │ │ │ ├── Bug-Criteria.html │ │ │ │ │ ├── Bug-Reporting.html │ │ │ │ │ ├── Common-Options.html │ │ │ │ │ ├── GNU-Free-Documentation-License.html │ │ │ │ │ ├── Reporting-Bugs.html │ │ │ │ │ ├── Selecting-the-Target-System.html │ │ │ │ │ ├── Target-Selection.html │ │ │ │ │ ├── addr2line.html │ │ │ │ │ ├── ar-cmdline.html │ │ │ │ │ ├── ar-scripts.html │ │ │ │ │ ├── ar.html │ │ │ │ │ ├── c_002b_002bfilt.html │ │ │ │ │ ├── def-file-format.html │ │ │ │ │ ├── dlltool.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nlmconv.html │ │ │ │ │ ├── nm.html │ │ │ │ │ ├── objcopy.html │ │ │ │ │ ├── objdump.html │ │ │ │ │ ├── ranlib.html │ │ │ │ │ ├── readelf.html │ │ │ │ │ ├── size.html │ │ │ │ │ ├── strings.html │ │ │ │ │ ├── strip.html │ │ │ │ │ ├── windmc.html │ │ │ │ │ └── windres.html │ │ │ │ ├── configure.html │ │ │ │ ├── gprof.html │ │ │ │ │ ├── Analysis-Options.html │ │ │ │ │ ├── Annotated-Source.html │ │ │ │ │ ├── Assumptions.html │ │ │ │ │ ├── Call-Graph.html │ │ │ │ │ ├── Callers.html │ │ │ │ │ ├── Compiling.html │ │ │ │ │ ├── Cycles.html │ │ │ │ │ ├── Debugging.html │ │ │ │ │ ├── Deprecated-Options.html │ │ │ │ │ ├── Details.html │ │ │ │ │ ├── Executing.html │ │ │ │ │ ├── File-Format.html │ │ │ │ │ ├── Flat-Profile.html │ │ │ │ │ ├── GNU-Free-Documentation-License.html │ │ │ │ │ ├── How-do-I_003f.html │ │ │ │ │ ├── Implementation.html │ │ │ │ │ ├── Inaccuracy.html │ │ │ │ │ ├── Incompatibilities.html │ │ │ │ │ ├── Internals.html │ │ │ │ │ ├── Introduction.html │ │ │ │ │ ├── Invoking.html │ │ │ │ │ ├── Line_002dby_002dline.html │ │ │ │ │ ├── Miscellaneous-Options.html │ │ │ │ │ ├── Output-Options.html │ │ │ │ │ ├── Output.html │ │ │ │ │ ├── Primary.html │ │ │ │ │ ├── Sampling-Error.html │ │ │ │ │ ├── Subroutines.html │ │ │ │ │ ├── Symspecs.html │ │ │ │ │ └── index.html │ │ │ │ ├── ld.html │ │ │ │ │ ├── ARM.html │ │ │ │ │ ├── Assignments.html │ │ │ │ │ ├── BFD-information-loss.html │ │ │ │ │ ├── BFD-outline.html │ │ │ │ │ ├── BFD.html │ │ │ │ │ ├── Basic-Script-Concepts.html │ │ │ │ │ ├── Bug-Criteria.html │ │ │ │ │ ├── Bug-Reporting.html │ │ │ │ │ ├── Builtin-Functions.html │ │ │ │ │ ├── Canonical-format.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Entry-Point.html │ │ │ │ │ ├── Environment.html │ │ │ │ │ ├── Evaluation.html │ │ │ │ │ ├── Expression-Section.html │ │ │ │ │ ├── Expressions.html │ │ │ │ │ ├── File-Commands.html │ │ │ │ │ ├── Forced-Input-Alignment.html │ │ │ │ │ ├── Forced-Output-Alignment.html │ │ │ │ │ ├── Format-Commands.html │ │ │ │ │ ├── GNU-Free-Documentation-License.html │ │ │ │ │ ├── H8_002f300.html │ │ │ │ │ ├── HPPA-ELF32.html │ │ │ │ │ ├── Implicit-Linker-Scripts.html │ │ │ │ │ ├── Input-Section-Basics.html │ │ │ │ │ ├── Input-Section-Common.html │ │ │ │ │ ├── Input-Section-Example.html │ │ │ │ │ ├── Input-Section-Keep.html │ │ │ │ │ ├── Input-Section-Wildcards.html │ │ │ │ │ ├── Input-Section.html │ │ │ │ │ ├── Invocation.html │ │ │ │ │ ├── LD-Index.html │ │ │ │ │ ├── Location-Counter.html │ │ │ │ │ ├── M68HC11_002f68HC12.html │ │ │ │ │ ├── M68K.html │ │ │ │ │ ├── MEMORY.html │ │ │ │ │ ├── MMIX.html │ │ │ │ │ ├── MRI.html │ │ │ │ │ ├── MSP430.html │ │ │ │ │ ├── Machine-Dependent.html │ │ │ │ │ ├── Miscellaneous-Commands.html │ │ │ │ │ ├── Operators.html │ │ │ │ │ ├── Options.html │ │ │ │ │ ├── Orphan-Sections.html │ │ │ │ │ ├── Output-Section-Address.html │ │ │ │ │ ├── Output-Section-Attributes.html │ │ │ │ │ ├── Output-Section-Data.html │ │ │ │ │ ├── Output-Section-Description.html │ │ │ │ │ ├── Output-Section-Discarding.html │ │ │ │ │ ├── Output-Section-Fill.html │ │ │ │ │ ├── Output-Section-Keywords.html │ │ │ │ │ ├── Output-Section-LMA.html │ │ │ │ │ ├── Output-Section-Name.html │ │ │ │ │ ├── Output-Section-Phdr.html │ │ │ │ │ ├── Output-Section-Region.html │ │ │ │ │ ├── Output-Section-Type.html │ │ │ │ │ ├── Overlay-Description.html │ │ │ │ │ ├── Overview.html │ │ │ │ │ ├── PHDRS.html │ │ │ │ │ ├── PROVIDE.html │ │ │ │ │ ├── PROVIDE_005fHIDDEN.html │ │ │ │ │ ├── PowerPC-ELF32.html │ │ │ │ │ ├── PowerPC64-ELF64.html │ │ │ │ │ ├── Reporting-Bugs.html │ │ │ │ │ ├── SECTIONS.html │ │ │ │ │ ├── SPU-ELF.html │ │ │ │ │ ├── Script-Format.html │ │ │ │ │ ├── Scripts.html │ │ │ │ │ ├── Simple-Assignments.html │ │ │ │ │ ├── Simple-Commands.html │ │ │ │ │ ├── Simple-Example.html │ │ │ │ │ ├── Source-Code-Reference.html │ │ │ │ │ ├── Symbols.html │ │ │ │ │ ├── TI-COFF.html │ │ │ │ │ ├── VERSION.html │ │ │ │ │ ├── WIN32.html │ │ │ │ │ ├── Xtensa.html │ │ │ │ │ ├── i960.html │ │ │ │ │ └── index.html │ │ │ │ ├── libiberty.html │ │ │ │ └── standards.html │ │ │ ├── gcc │ │ │ │ └── HTML │ │ │ │ │ └── gcc-4.3.2 │ │ │ │ │ ├── cpp │ │ │ │ │ ├── Argument-Prescan.html │ │ │ │ │ ├── Assertions.html │ │ │ │ │ ├── C_002b_002b-Named-Operators.html │ │ │ │ │ ├── Character-sets.html │ │ │ │ │ ├── Common-Predefined-Macros.html │ │ │ │ │ ├── Computed-Includes.html │ │ │ │ │ ├── Concatenation.html │ │ │ │ │ ├── Concept-Index.html │ │ │ │ │ ├── Conditional-Syntax.html │ │ │ │ │ ├── Conditional-Uses.html │ │ │ │ │ ├── Conditionals.html │ │ │ │ │ ├── Defined.html │ │ │ │ │ ├── Deleted-Code.html │ │ │ │ │ ├── Diagnostics.html │ │ │ │ │ ├── Differences-from-previous-versions.html │ │ │ │ │ ├── Directives-Within-Macro-Arguments.html │ │ │ │ │ ├── Duplication-of-Side-Effects.html │ │ │ │ │ ├── Elif.html │ │ │ │ │ ├── Else.html │ │ │ │ │ ├── Environment-Variables.html │ │ │ │ │ ├── Function_002dlike-Macros.html │ │ │ │ │ ├── GNU-Free-Documentation-License.html │ │ │ │ │ ├── Header-Files.html │ │ │ │ │ ├── Identifier-characters.html │ │ │ │ │ ├── If.html │ │ │ │ │ ├── Ifdef.html │ │ │ │ │ ├── Implementation-Details.html │ │ │ │ │ ├── Implementation-limits.html │ │ │ │ │ ├── Implementation_002ddefined-behavior.html │ │ │ │ │ ├── Include-Operation.html │ │ │ │ │ ├── Include-Syntax.html │ │ │ │ │ ├── Index-of-Directives.html │ │ │ │ │ ├── Initial-processing.html │ │ │ │ │ ├── Invocation.html │ │ │ │ │ ├── Line-Control.html │ │ │ │ │ ├── Macro-Arguments.html │ │ │ │ │ ├── Macro-Pitfalls.html │ │ │ │ │ ├── Macros.html │ │ │ │ │ ├── Misnesting.html │ │ │ │ │ ├── Newlines-in-Arguments.html │ │ │ │ │ ├── Object_002dlike-Macros.html │ │ │ │ │ ├── Obsolete-Features.html │ │ │ │ │ ├── Obsolete-once_002donly-headers.html │ │ │ │ │ ├── Once_002dOnly-Headers.html │ │ │ │ │ ├── Operator-Precedence-Problems.html │ │ │ │ │ ├── Option-Index.html │ │ │ │ │ ├── Other-Directives.html │ │ │ │ │ ├── Overview.html │ │ │ │ │ ├── Pragmas.html │ │ │ │ │ ├── Predefined-Macros.html │ │ │ │ │ ├── Preprocessor-Output.html │ │ │ │ │ ├── Search-Path.html │ │ │ │ │ ├── Self_002dReferential-Macros.html │ │ │ │ │ ├── Standard-Predefined-Macros.html │ │ │ │ │ ├── Stringification.html │ │ │ │ │ ├── Swallowing-the-Semicolon.html │ │ │ │ │ ├── System-Headers.html │ │ │ │ │ ├── System_002dspecific-Predefined-Macros.html │ │ │ │ │ ├── The-preprocessing-language.html │ │ │ │ │ ├── Tokenization.html │ │ │ │ │ ├── Traditional-Mode.html │ │ │ │ │ ├── Traditional-lexical-analysis.html │ │ │ │ │ ├── Traditional-macros.html │ │ │ │ │ ├── Traditional-miscellany.html │ │ │ │ │ ├── Traditional-warnings.html │ │ │ │ │ ├── Undefining-and-Redefining-Macros.html │ │ │ │ │ ├── Variadic-Macros.html │ │ │ │ │ ├── Wrapper-Headers.html │ │ │ │ │ ├── Wtrigraphs.html │ │ │ │ │ ├── dashMF.html │ │ │ │ │ ├── fdollars_002din_002didentifiers.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── trigraphs.html │ │ │ │ │ ├── cppinternals │ │ │ │ │ ├── Concept-Index.html │ │ │ │ │ ├── Conventions.html │ │ │ │ │ ├── Files.html │ │ │ │ │ ├── Guard-Macros.html │ │ │ │ │ ├── Hash-Nodes.html │ │ │ │ │ ├── Invalid-identifiers.html │ │ │ │ │ ├── Lexer.html │ │ │ │ │ ├── Lexing-a-line.html │ │ │ │ │ ├── Line-Numbering.html │ │ │ │ │ ├── Macro-Expansion.html │ │ │ │ │ ├── Token-Spacing.html │ │ │ │ │ └── index.html │ │ │ │ │ ├── gcc │ │ │ │ │ ├── ARC-Options.html │ │ │ │ │ ├── ARM-NEON-Intrinsics.html │ │ │ │ │ ├── ARM-Options.html │ │ │ │ │ ├── ARM-Pragmas.html │ │ │ │ │ ├── ARM-iWMMXt-Built_002din-Functions.html │ │ │ │ │ ├── AVR-Options.html │ │ │ │ │ ├── Actual-Bugs.html │ │ │ │ │ ├── Alignment.html │ │ │ │ │ ├── Alpha-Built_002din-Functions.html │ │ │ │ │ ├── Alternate-Keywords.html │ │ │ │ │ ├── Architecture-implementation.html │ │ │ │ │ ├── Argument-Types.html │ │ │ │ │ ├── Arrays-and-pointers-implementation.html │ │ │ │ │ ├── Asm-Labels.html │ │ │ │ │ ├── Assembler-Options.html │ │ │ │ │ ├── Atomic-Builtins.html │ │ │ │ │ ├── Attribute-Syntax.html │ │ │ │ │ ├── Backwards-Compatibility.html │ │ │ │ │ ├── Binary-constants.html │ │ │ │ │ ├── Blackfin-Built_002din-Functions.html │ │ │ │ │ ├── Blackfin-Options.html │ │ │ │ │ ├── Bound-member-functions.html │ │ │ │ │ ├── Bug-Criteria.html │ │ │ │ │ ├── Bug-Reporting.html │ │ │ │ │ ├── Bugs.html │ │ │ │ │ ├── C-Dialect-Options.html │ │ │ │ │ ├── C-Extensions.html │ │ │ │ │ ├── C-Implementation.html │ │ │ │ │ ├── C99-Thread_002dLocal-Edits.html │ │ │ │ │ ├── CRIS-Options.html │ │ │ │ │ ├── CRX-Options.html │ │ │ │ │ ├── C_002b_002b-Attributes.html │ │ │ │ │ ├── C_002b_002b-Comments.html │ │ │ │ │ ├── C_002b_002b-Dialect-Options.html │ │ │ │ │ ├── C_002b_002b-Extensions.html │ │ │ │ │ ├── C_002b_002b-Interface.html │ │ │ │ │ ├── C_002b_002b-Misunderstandings.html │ │ │ │ │ ├── C_002b_002b98-Thread_002dLocal-Edits.html │ │ │ │ │ ├── Case-Ranges.html │ │ │ │ │ ├── Cast-to-Union.html │ │ │ │ │ ├── Character-Escapes.html │ │ │ │ │ ├── Characters-implementation.html │ │ │ │ │ ├── Code-Gen-Options.html │ │ │ │ │ ├── Compatibility.html │ │ │ │ │ ├── Complex.html │ │ │ │ │ ├── Compound-Literals.html │ │ │ │ │ ├── Conditionals.html │ │ │ │ │ ├── Constant-string-objects.html │ │ │ │ │ ├── Constraints.html │ │ │ │ │ ├── Constructing-Calls.html │ │ │ │ │ ├── Contributing.html │ │ │ │ │ ├── Contributors.html │ │ │ │ │ ├── Copy-Assignment.html │ │ │ │ │ ├── Copying.html │ │ │ │ │ ├── Cross_002dCompiler-Problems.html │ │ │ │ │ ├── Cross_002dprofiling.html │ │ │ │ │ ├── DEC-Alpha-Options.html │ │ │ │ │ ├── DEC-Alpha_002fVMS-Options.html │ │ │ │ │ ├── Darwin-Options.html │ │ │ │ │ ├── Darwin-Pragmas.html │ │ │ │ │ ├── Debugging-Options.html │ │ │ │ │ ├── Decimal-Float.html │ │ │ │ │ ├── Declarators-implementation.html │ │ │ │ │ ├── Deprecated-Features.html │ │ │ │ │ ├── Designated-Inits.html │ │ │ │ │ ├── Diagnostic-Pragmas.html │ │ │ │ │ ├── Directly_002dmapped-Integer-Functions.html │ │ │ │ │ ├── Directly_002dmapped-Media-Functions.html │ │ │ │ │ ├── Directory-Options.html │ │ │ │ │ ├── Disappointments.html │ │ │ │ │ ├── Dollar-Signs.html │ │ │ │ │ ├── Empty-Structures.html │ │ │ │ │ ├── Environment-Variables.html │ │ │ │ │ ├── Environment-implementation.html │ │ │ │ │ ├── Escaped-Newlines.html │ │ │ │ │ ├── Example-of-asm-with-clobbered-asm-reg.html │ │ │ │ │ ├── Executing-code-before-main.html │ │ │ │ │ ├── Explicit-Reg-Vars.html │ │ │ │ │ ├── Extended-Asm.html │ │ │ │ │ ├── FRV-Options.html │ │ │ │ │ ├── FR_002dV-Built_002din-Functions.html │ │ │ │ │ ├── Fixed-Headers.html │ │ │ │ │ ├── Fixed_002dPoint.html │ │ │ │ │ ├── Floating-Types.html │ │ │ │ │ ├── Floating-point-implementation.html │ │ │ │ │ ├── Function-Attributes.html │ │ │ │ │ ├── Function-Names.html │ │ │ │ │ ├── Function-Prototypes.html │ │ │ │ │ ├── Funding.html │ │ │ │ │ ├── GNU-Free-Documentation-License.html │ │ │ │ │ ├── GNU-Project.html │ │ │ │ │ ├── GNU_002fLinux-Options.html │ │ │ │ │ ├── G_002b_002b-and-GCC.html │ │ │ │ │ ├── Garbage-Collection.html │ │ │ │ │ ├── Gcov-Data-Files.html │ │ │ │ │ ├── Gcov-Intro.html │ │ │ │ │ ├── Gcov-and-Optimization.html │ │ │ │ │ ├── Gcov.html │ │ │ │ │ ├── Global-Reg-Vars.html │ │ │ │ │ ├── H8_002f300-Options.html │ │ │ │ │ ├── HPPA-Options.html │ │ │ │ │ ├── Hex-Floats.html │ │ │ │ │ ├── Hints-implementation.html │ │ │ │ │ ├── IA_002d64-Options.html │ │ │ │ │ ├── Identifiers-implementation.html │ │ │ │ │ ├── Incompatibilities.html │ │ │ │ │ ├── Incomplete-Enums.html │ │ │ │ │ ├── Initializers.html │ │ │ │ │ ├── Inline.html │ │ │ │ │ ├── Integers-implementation.html │ │ │ │ │ ├── Interoperation.html │ │ │ │ │ ├── Invoking-GCC.html │ │ │ │ │ ├── Invoking-G_002b_002b.html │ │ │ │ │ ├── Invoking-Gcov.html │ │ │ │ │ ├── Java-Exceptions.html │ │ │ │ │ ├── Keyword-Index.html │ │ │ │ │ ├── Labels-as-Values.html │ │ │ │ │ ├── Language-Independent-Options.html │ │ │ │ │ ├── Library-functions-implementation.html │ │ │ │ │ ├── Link-Options.html │ │ │ │ │ ├── Local-Labels.html │ │ │ │ │ ├── Local-Reg-Vars.html │ │ │ │ │ ├── Locale_002dspecific-behavior-implementation.html │ │ │ │ │ ├── Long-Long.html │ │ │ │ │ ├── M32C-Options.html │ │ │ │ │ ├── M32C-Pragmas.html │ │ │ │ │ ├── M32R_002fD-Options.html │ │ │ │ │ ├── M680x0-Options.html │ │ │ │ │ ├── M68hc1x-Options.html │ │ │ │ │ ├── MCore-Options.html │ │ │ │ │ ├── MIPS-DSP-Built_002din-Functions.html │ │ │ │ │ ├── MIPS-Options.html │ │ │ │ │ ├── MIPS-Paired_002dSingle-Support.html │ │ │ │ │ ├── MIPS_002d3D-Built_002din-Functions.html │ │ │ │ │ ├── MMIX-Options.html │ │ │ │ │ ├── MN10300-Options.html │ │ │ │ │ ├── MT-Options.html │ │ │ │ │ ├── Machine-Constraints.html │ │ │ │ │ ├── Mixed-Declarations.html │ │ │ │ │ ├── Modifiers.html │ │ │ │ │ ├── Multi_002dAlternative.html │ │ │ │ │ ├── Name-lookup.html │ │ │ │ │ ├── Namespace-Association.html │ │ │ │ │ ├── Nested-Functions.html │ │ │ │ │ ├── Non_002dbugs.html │ │ │ │ │ ├── Object-Size-Checking.html │ │ │ │ │ ├── Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html │ │ │ │ │ ├── Objective_002dC.html │ │ │ │ │ ├── Offsetof.html │ │ │ │ │ ├── Optimize-Options.html │ │ │ │ │ ├── Option-Index.html │ │ │ │ │ ├── Option-Summary.html │ │ │ │ │ ├── Other-Built_002din-Functions.html │ │ │ │ │ ├── Other-Builtins.html │ │ │ │ │ ├── Overall-Options.html │ │ │ │ │ ├── PDP_002d11-Options.html │ │ │ │ │ ├── Paired_002dSingle-Arithmetic.html │ │ │ │ │ ├── Paired_002dSingle-Built_002din-Functions.html │ │ │ │ │ ├── Pointer-Arith.html │ │ │ │ │ ├── PowerPC-AltiVec-Built_002din-Functions.html │ │ │ │ │ ├── PowerPC-Options.html │ │ │ │ │ ├── PowerPC-Type-Attributes.html │ │ │ │ │ ├── Pragmas.html │ │ │ │ │ ├── Precompiled-Headers.html │ │ │ │ │ ├── Preprocessing-directives-implementation.html │ │ │ │ │ ├── Preprocessor-Options.html │ │ │ │ │ ├── Protoize-Caveats.html │ │ │ │ │ ├── Qualifiers-implementation.html │ │ │ │ │ ├── RS_002f6000-and-PowerPC-Options.html │ │ │ │ │ ├── RS_002f6000-and-PowerPC-Pragmas.html │ │ │ │ │ ├── Raw-read_002fwrite-Functions.html │ │ │ │ │ ├── Restricted-Pointers.html │ │ │ │ │ ├── Return-Address.html │ │ │ │ │ ├── Running-Protoize.html │ │ │ │ │ ├── SH-Options.html │ │ │ │ │ ├── SPARC-Options.html │ │ │ │ │ ├── SPARC-VIS-Built_002din-Functions.html │ │ │ │ │ ├── SPU-Built_002din-Functions.html │ │ │ │ │ ├── SPU-Options.html │ │ │ │ │ ├── SPU-Type-Attributes.html │ │ │ │ │ ├── S_002f390-and-zSeries-Options.html │ │ │ │ │ ├── Score-Options.html │ │ │ │ │ ├── Service.html │ │ │ │ │ ├── Simple-Constraints.html │ │ │ │ │ ├── Solaris-Format-Checks.html │ │ │ │ │ ├── Solaris-Pragmas.html │ │ │ │ │ ├── Spec-Files.html │ │ │ │ │ ├── Standard-Libraries.html │ │ │ │ │ ├── Standards.html │ │ │ │ │ ├── Statement-Exprs.html │ │ │ │ │ ├── Statements-implementation.html │ │ │ │ │ ├── Static-Definitions.html │ │ │ │ │ ├── Structure_002dPacking-Pragmas.html │ │ │ │ │ ├── Structures-unions-enumerations-and-bit_002dfields-implementation.html │ │ │ │ │ ├── Submodel-Options.html │ │ │ │ │ ├── Subscripting.html │ │ │ │ │ ├── Symbol_002dRenaming-Pragmas.html │ │ │ │ │ ├── System-V-Options.html │ │ │ │ │ ├── Target-Builtins.html │ │ │ │ │ ├── Target-Format-Checks.html │ │ │ │ │ ├── Target-Options.html │ │ │ │ │ ├── Template-Instantiation.html │ │ │ │ │ ├── Temporaries.html │ │ │ │ │ ├── Thread_002dLocal.html │ │ │ │ │ ├── Translation-implementation.html │ │ │ │ │ ├── Trouble.html │ │ │ │ │ ├── Type-Attributes.html │ │ │ │ │ ├── Type-Traits.html │ │ │ │ │ ├── Type-encoding.html │ │ │ │ │ ├── Type_002dpunning.html │ │ │ │ │ ├── Typeof.html │ │ │ │ │ ├── Unnamed-Fields.html │ │ │ │ │ ├── V850-Options.html │ │ │ │ │ ├── VAX-Options.html │ │ │ │ │ ├── Vague-Linkage.html │ │ │ │ │ ├── Variable-Attributes.html │ │ │ │ │ ├── Variable-Length.html │ │ │ │ │ ├── Variadic-Macros.html │ │ │ │ │ ├── Vector-Extensions.html │ │ │ │ │ ├── Visibility-Pragmas.html │ │ │ │ │ ├── Volatiles.html │ │ │ │ │ ├── VxWorks-Options.html │ │ │ │ │ ├── Warning-Options.html │ │ │ │ │ ├── Warnings-and-Errors.html │ │ │ │ │ ├── Weak-Pragmas.html │ │ │ │ │ ├── What-you-can-and-what-you-cannot-do-in-_002bload.html │ │ │ │ │ ├── Wtrigraphs.html │ │ │ │ │ ├── X86-Built_002din-Functions.html │ │ │ │ │ ├── Xstormy16-Options.html │ │ │ │ │ ├── Xtensa-Options.html │ │ │ │ │ ├── Zero-Length.html │ │ │ │ │ ├── compatibility_005falias.html │ │ │ │ │ ├── dashMF.html │ │ │ │ │ ├── fdollars_002din_002didentifiers.html │ │ │ │ │ ├── i386-Type-Attributes.html │ │ │ │ │ ├── i386-Variable-Attributes.html │ │ │ │ │ ├── i386-and-x86_002d64-Options.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── x86_002d64-Options.html │ │ │ │ │ └── zSeries-Options.html │ │ │ │ │ ├── gccinstall │ │ │ │ │ ├── binaries.html │ │ │ │ │ ├── build.html │ │ │ │ │ ├── configure.html │ │ │ │ │ ├── download.html │ │ │ │ │ ├── finalinstall.html │ │ │ │ │ ├── gfdl.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── old.html │ │ │ │ │ ├── prerequisites.html │ │ │ │ │ ├── specific.html │ │ │ │ │ └── test.html │ │ │ │ │ └── gccint │ │ │ │ │ ├── Accessors.html │ │ │ │ │ ├── Ada-Tests.html │ │ │ │ │ ├── Adding-new-DECL-node-types.html │ │ │ │ │ ├── Addressing-Modes.html │ │ │ │ │ ├── Aggregate-Return.html │ │ │ │ │ ├── Alias-analysis.html │ │ │ │ │ ├── Alignment-Output.html │ │ │ │ │ ├── All-Debuggers.html │ │ │ │ │ ├── Allocation-Order.html │ │ │ │ │ ├── Anchored-Addresses.html │ │ │ │ │ ├── Annotations.html │ │ │ │ │ ├── Arithmetic.html │ │ │ │ │ ├── Assembler-Format.html │ │ │ │ │ ├── Assembler.html │ │ │ │ │ ├── Attr-Example.html │ │ │ │ │ ├── Attributes.html │ │ │ │ │ ├── Back-End.html │ │ │ │ │ ├── Basic-Blocks.html │ │ │ │ │ ├── Bit_002dFields.html │ │ │ │ │ ├── Blocks.html │ │ │ │ │ ├── Build.html │ │ │ │ │ ├── C-Constraint-Interface.html │ │ │ │ │ ├── C-Tests.html │ │ │ │ │ ├── C_002b_002b-ABI.html │ │ │ │ │ ├── Caller-Saves.html │ │ │ │ │ ├── Calls.html │ │ │ │ │ ├── Class-Preferences.html │ │ │ │ │ ├── Classes.html │ │ │ │ │ ├── Cleanups.html │ │ │ │ │ ├── Code-Iterators.html │ │ │ │ │ ├── Collect2.html │ │ │ │ │ ├── Comparisons.html │ │ │ │ │ ├── Compound-Expressions.html │ │ │ │ │ ├── Compound-Lvalues.html │ │ │ │ │ ├── Concept-Index.html │ │ │ │ │ ├── Condition-Code.html │ │ │ │ │ ├── Conditional-Execution.html │ │ │ │ │ ├── Conditional-Expressions.html │ │ │ │ │ ├── Config-Fragments.html │ │ │ │ │ ├── Configuration-Files.html │ │ │ │ │ ├── Configuration.html │ │ │ │ │ ├── Configure-Terms.html │ │ │ │ │ ├── Constant-Attributes.html │ │ │ │ │ ├── Constant-Definitions.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Constraints.html │ │ │ │ │ ├── Containers.html │ │ │ │ │ ├── Contributing.html │ │ │ │ │ ├── Contributors.html │ │ │ │ │ ├── Control-Flow.html │ │ │ │ │ ├── Conversions.html │ │ │ │ │ ├── Copying.html │ │ │ │ │ ├── Costs.html │ │ │ │ │ ├── Current-structure-hierarchy.html │ │ │ │ │ ├── DBX-Hooks.html │ │ │ │ │ ├── DBX-Options.html │ │ │ │ │ ├── Data-Output.html │ │ │ │ │ ├── Debugging-Info.html │ │ │ │ │ ├── Decimal-float-library-routines.html │ │ │ │ │ ├── Declarations.html │ │ │ │ │ ├── Deficiencies.html │ │ │ │ │ ├── Define-Constraints.html │ │ │ │ │ ├── Defining-Attributes.html │ │ │ │ │ ├── Defining-Mode-Iterators.html │ │ │ │ │ ├── Defining-Predicates.html │ │ │ │ │ ├── Delay-Slots.html │ │ │ │ │ ├── Dependency-analysis.html │ │ │ │ │ ├── Dependent-Patterns.html │ │ │ │ │ ├── Dispatch-Tables.html │ │ │ │ │ ├── Documentation.html │ │ │ │ │ ├── Driver.html │ │ │ │ │ ├── Edges.html │ │ │ │ │ ├── Elimination.html │ │ │ │ │ ├── Empty-Statements.html │ │ │ │ │ ├── Example.html │ │ │ │ │ ├── Examples.html │ │ │ │ │ ├── Exception-Handling.html │ │ │ │ │ ├── Exception-Region-Output.html │ │ │ │ │ ├── Exception-handling-routines.html │ │ │ │ │ ├── Expander-Definitions.html │ │ │ │ │ ├── Expression-trees.html │ │ │ │ │ ├── Expressions.html │ │ │ │ │ ├── File-Framework.html │ │ │ │ │ ├── File-Names-and-DBX.html │ │ │ │ │ ├── Files.html │ │ │ │ │ ├── Filesystem.html │ │ │ │ │ ├── Fixed_002dpoint-fractional-library-routines.html │ │ │ │ │ ├── Flags.html │ │ │ │ │ ├── Floating-Point.html │ │ │ │ │ ├── Fragments.html │ │ │ │ │ ├── Frame-Layout.html │ │ │ │ │ ├── Frame-Registers.html │ │ │ │ │ ├── Front-End-Config.html │ │ │ │ │ ├── Front-End-Directory.html │ │ │ │ │ ├── Front-End.html │ │ │ │ │ ├── Function-Basics.html │ │ │ │ │ ├── Function-Bodies.html │ │ │ │ │ ├── Function-Entry.html │ │ │ │ │ ├── Functions.html │ │ │ │ │ ├── Funding.html │ │ │ │ │ ├── GENERIC.html │ │ │ │ │ ├── GGC-Roots.html │ │ │ │ │ ├── GIMPLE-Example.html │ │ │ │ │ ├── GIMPLE-Exception-Handling.html │ │ │ │ │ ├── GIMPLE-Expressions.html │ │ │ │ │ ├── GIMPLE.html │ │ │ │ │ ├── GNU-Free-Documentation-License.html │ │ │ │ │ ├── GNU-Project.html │ │ │ │ │ ├── GTY-Options.html │ │ │ │ │ ├── Gimplification-pass.html │ │ │ │ │ ├── Header-Dirs.html │ │ │ │ │ ├── Headers.html │ │ │ │ │ ├── Host-Common.html │ │ │ │ │ ├── Host-Config.html │ │ │ │ │ ├── Host-Fragment.html │ │ │ │ │ ├── Host-Misc.html │ │ │ │ │ ├── Identifiers.html │ │ │ │ │ ├── Incdec.html │ │ │ │ │ ├── Including-Patterns.html │ │ │ │ │ ├── Initialization.html │ │ │ │ │ ├── Insn-Attributes.html │ │ │ │ │ ├── Insn-Canonicalizations.html │ │ │ │ │ ├── Insn-Lengths.html │ │ │ │ │ ├── Insn-Splitting.html │ │ │ │ │ ├── Insns.html │ │ │ │ │ ├── Instruction-Output.html │ │ │ │ │ ├── Integer-library-routines.html │ │ │ │ │ ├── Interface.html │ │ │ │ │ ├── Interfaces.html │ │ │ │ │ ├── Internal-structure.html │ │ │ │ │ ├── Iterators.html │ │ │ │ │ ├── Jump-Patterns.html │ │ │ │ │ ├── Jumps.html │ │ │ │ │ ├── LCSSA.html │ │ │ │ │ ├── Label-Output.html │ │ │ │ │ ├── Lambda.html │ │ │ │ │ ├── Languages.html │ │ │ │ │ ├── Leaf-Functions.html │ │ │ │ │ ├── Libgcc.html │ │ │ │ │ ├── Library-Calls.html │ │ │ │ │ ├── Library-Files.html │ │ │ │ │ ├── Liveness-information.html │ │ │ │ │ ├── Logical-Operators.html │ │ │ │ │ ├── Loop-Analysis-and-Representation.html │ │ │ │ │ ├── Loop-manipulation.html │ │ │ │ │ ├── Loop-querying.html │ │ │ │ │ ├── Loop-representation.html │ │ │ │ │ ├── Looping-Patterns.html │ │ │ │ │ ├── Loops.html │ │ │ │ │ ├── MIPS-Coprocessors.html │ │ │ │ │ ├── Machine-Constraints.html │ │ │ │ │ ├── Machine-Desc.html │ │ │ │ │ ├── Machine-Modes.html │ │ │ │ │ ├── Machine_002dIndependent-Predicates.html │ │ │ │ │ ├── Macros-and-Functions.html │ │ │ │ │ ├── Macros-for-Initialization.html │ │ │ │ │ ├── Maintaining-the-CFG.html │ │ │ │ │ ├── Makefile.html │ │ │ │ │ ├── Man-Page-Generation.html │ │ │ │ │ ├── Misc.html │ │ │ │ │ ├── Miscellaneous-Docs.html │ │ │ │ │ ├── Miscellaneous-routines.html │ │ │ │ │ ├── Mode-Iterators.html │ │ │ │ │ ├── Mode-Switching.html │ │ │ │ │ ├── Modifiers.html │ │ │ │ │ ├── Multi_002dAlternative.html │ │ │ │ │ ├── Namespaces.html │ │ │ │ │ ├── Number-of-iterations.html │ │ │ │ │ ├── Old-Constraints.html │ │ │ │ │ ├── Omega.html │ │ │ │ │ ├── Option-Index.html │ │ │ │ │ ├── Option-file-format.html │ │ │ │ │ ├── Option-properties.html │ │ │ │ │ ├── Options.html │ │ │ │ │ ├── Output-Statement.html │ │ │ │ │ ├── Output-Template.html │ │ │ │ │ ├── Overview.html │ │ │ │ │ ├── PCH-Target.html │ │ │ │ │ ├── PIC.html │ │ │ │ │ ├── Parsing-pass.html │ │ │ │ │ ├── Pass-manager.html │ │ │ │ │ ├── Passes.html │ │ │ │ │ ├── Pattern-Ordering.html │ │ │ │ │ ├── Patterns.html │ │ │ │ │ ├── Peephole-Definitions.html │ │ │ │ │ ├── Per_002dFunction-Data.html │ │ │ │ │ ├── Portability.html │ │ │ │ │ ├── Predicates.html │ │ │ │ │ ├── Processor-pipeline-description.html │ │ │ │ │ ├── Profile-information.html │ │ │ │ │ ├── Profiling.html │ │ │ │ │ ├── RTL-Classes.html │ │ │ │ │ ├── RTL-Declarations.html │ │ │ │ │ ├── RTL-Objects.html │ │ │ │ │ ├── RTL-Template.html │ │ │ │ │ ├── RTL-passes.html │ │ │ │ │ ├── RTL.html │ │ │ │ │ ├── Reading-RTL.html │ │ │ │ │ ├── Register-Arguments.html │ │ │ │ │ ├── Register-Basics.html │ │ │ │ │ ├── Register-Classes.html │ │ │ │ │ ├── Registers.html │ │ │ │ │ ├── Regs-and-Memory.html │ │ │ │ │ ├── Rough-GIMPLE-Grammar.html │ │ │ │ │ ├── Run_002dtime-Target.html │ │ │ │ │ ├── SDB-and-DWARF.html │ │ │ │ │ ├── SSA.html │ │ │ │ │ ├── Scalar-Return.html │ │ │ │ │ ├── Scalar-evolutions.html │ │ │ │ │ ├── Scheduling.html │ │ │ │ │ ├── Scopes.html │ │ │ │ │ ├── Sections.html │ │ │ │ │ ├── Selection-Statements.html │ │ │ │ │ ├── Sharing.html │ │ │ │ │ ├── Side-Effects.html │ │ │ │ │ ├── Simple-Constraints.html │ │ │ │ │ ├── Soft-float-library-routines.html │ │ │ │ │ ├── Source-Tree.html │ │ │ │ │ ├── Special-Accessors.html │ │ │ │ │ ├── Stack-Arguments.html │ │ │ │ │ ├── Stack-Checking.html │ │ │ │ │ ├── Stack-Registers.html │ │ │ │ │ ├── Stack-Smashing-Protection.html │ │ │ │ │ ├── Stack-and-Calling.html │ │ │ │ │ ├── Standard-Names.html │ │ │ │ │ ├── Statement-Operands.html │ │ │ │ │ ├── Statement-Sequences.html │ │ │ │ │ ├── Statements.html │ │ │ │ │ ├── Storage-Layout.html │ │ │ │ │ ├── Subdirectories.html │ │ │ │ │ ├── Substitutions.html │ │ │ │ │ ├── System-Config.html │ │ │ │ │ ├── TARGET_005fHAVE_005fSWITCHABLE_005fBSS_005fSECTIONS.html │ │ │ │ │ ├── TARGET_005fSHIFT_005fTRUNCATION_005fMASK.html │ │ │ │ │ ├── Tagging-Insns.html │ │ │ │ │ ├── Tail-Calls.html │ │ │ │ │ ├── Target-Attributes.html │ │ │ │ │ ├── Target-Fragment.html │ │ │ │ │ ├── Target-Macros.html │ │ │ │ │ ├── Target-Structure.html │ │ │ │ │ ├── Temporaries.html │ │ │ │ │ ├── Test-Directives.html │ │ │ │ │ ├── Test-Idioms.html │ │ │ │ │ ├── Testsuites.html │ │ │ │ │ ├── Texinfo-Manuals.html │ │ │ │ │ ├── Top-Level.html │ │ │ │ │ ├── Trampolines.html │ │ │ │ │ ├── Tree-SSA.html │ │ │ │ │ ├── Tree-overview.html │ │ │ │ │ ├── Tree_002dSSA-passes.html │ │ │ │ │ ├── Trees.html │ │ │ │ │ ├── Type-Information.html │ │ │ │ │ ├── Type-Layout.html │ │ │ │ │ ├── Types.html │ │ │ │ │ ├── Uninitialized-Data.html │ │ │ │ │ ├── VMS-Debug.html │ │ │ │ │ ├── Values-in-Registers.html │ │ │ │ │ ├── Varargs.html │ │ │ │ │ ├── Vector-Operations.html │ │ │ │ │ ├── Working-with-declarations.html │ │ │ │ │ ├── compat-Testing.html │ │ │ │ │ ├── define_005fpeephole.html │ │ │ │ │ ├── define_005fpeephole2.html │ │ │ │ │ ├── epilogue-instruction-pattern.html │ │ │ │ │ ├── gcc-Directory.html │ │ │ │ │ ├── gcov-Testing.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── libgcj-Tests.html │ │ │ │ │ ├── loop_002div.html │ │ │ │ │ ├── profopt-Testing.html │ │ │ │ │ ├── prologue-instruction-pattern.html │ │ │ │ │ └── shift-patterns.html │ │ │ ├── gdb │ │ │ │ ├── gdb.pdf │ │ │ │ └── onlinedocs │ │ │ │ │ ├── gdb.html │ │ │ │ │ ├── gdb_1.html │ │ │ │ │ ├── gdb_10.html │ │ │ │ │ ├── gdb_11.html │ │ │ │ │ ├── gdb_12.html │ │ │ │ │ ├── gdb_13.html │ │ │ │ │ ├── gdb_14.html │ │ │ │ │ ├── gdb_15.html │ │ │ │ │ ├── gdb_16.html │ │ │ │ │ ├── gdb_17.html │ │ │ │ │ ├── gdb_18.html │ │ │ │ │ ├── gdb_19.html │ │ │ │ │ ├── gdb_2.html │ │ │ │ │ ├── gdb_20.html │ │ │ │ │ ├── gdb_21.html │ │ │ │ │ ├── gdb_22.html │ │ │ │ │ ├── gdb_23.html │ │ │ │ │ ├── gdb_24.html │ │ │ │ │ ├── gdb_25.html │ │ │ │ │ ├── gdb_26.html │ │ │ │ │ ├── gdb_27.html │ │ │ │ │ ├── gdb_28.html │ │ │ │ │ ├── gdb_29.html │ │ │ │ │ ├── gdb_3.html │ │ │ │ │ ├── gdb_30.html │ │ │ │ │ ├── gdb_31.html │ │ │ │ │ ├── gdb_32.html │ │ │ │ │ ├── gdb_33.html │ │ │ │ │ ├── gdb_34.html │ │ │ │ │ ├── gdb_35.html │ │ │ │ │ ├── gdb_36.html │ │ │ │ │ ├── gdb_37.html │ │ │ │ │ ├── gdb_38.html │ │ │ │ │ ├── gdb_39.html │ │ │ │ │ ├── gdb_4.html │ │ │ │ │ ├── gdb_40.html │ │ │ │ │ ├── gdb_41.html │ │ │ │ │ ├── gdb_42.html │ │ │ │ │ ├── gdb_43.html │ │ │ │ │ ├── gdb_44.html │ │ │ │ │ ├── gdb_45.html │ │ │ │ │ ├── gdb_46.html │ │ │ │ │ ├── gdb_47.html │ │ │ │ │ ├── gdb_48.html │ │ │ │ │ ├── gdb_49.html │ │ │ │ │ ├── gdb_5.html │ │ │ │ │ ├── gdb_50.html │ │ │ │ │ ├── gdb_6.html │ │ │ │ │ ├── gdb_7.html │ │ │ │ │ ├── gdb_8.html │ │ │ │ │ ├── gdb_9.html │ │ │ │ │ ├── gdb_abt.html │ │ │ │ │ ├── gdb_fot.html │ │ │ │ │ ├── gdb_ovr.html │ │ │ │ │ └── gdb_toc.html │ │ │ ├── simulavr │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── ChangeLog-2001 │ │ │ │ ├── ChangeLog-2002 │ │ │ │ ├── ChangeLog-2003 │ │ │ │ ├── INSTALL │ │ │ │ ├── ProjSummary │ │ │ │ ├── README │ │ │ │ ├── README.gdb │ │ │ │ ├── README.opcodes │ │ │ │ ├── TODO │ │ │ │ ├── html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── simulavr.html │ │ │ │ │ ├── simulavr_1.html │ │ │ │ │ ├── simulavr_10.html │ │ │ │ │ ├── simulavr_11.html │ │ │ │ │ ├── simulavr_2.html │ │ │ │ │ ├── simulavr_3.html │ │ │ │ │ ├── simulavr_4.html │ │ │ │ │ ├── simulavr_5.html │ │ │ │ │ ├── simulavr_6.html │ │ │ │ │ ├── simulavr_7.html │ │ │ │ │ ├── simulavr_8.html │ │ │ │ │ ├── simulavr_9.html │ │ │ │ │ ├── simulavr_abt.html │ │ │ │ │ └── simulavr_toc.html │ │ │ │ ├── internals_html │ │ │ │ │ ├── adc_8c-source.html │ │ │ │ │ ├── adc_8c.html │ │ │ │ │ ├── avrclass_8c-source.html │ │ │ │ │ ├── avrclass_8c.html │ │ │ │ │ ├── avrcore_8c-source.html │ │ │ │ │ ├── avrcore_8c.html │ │ │ │ │ ├── avrerror_8c-source.html │ │ │ │ │ ├── avrerror_8c.html │ │ │ │ │ ├── avrmalloc_8c-source.html │ │ │ │ │ ├── avrmalloc_8c.html │ │ │ │ │ ├── break_watch_pts.html │ │ │ │ │ ├── callback_8c-source.html │ │ │ │ │ ├── decoder_8c-source.html │ │ │ │ │ ├── decoder_8c.html │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── device_8c-source.html │ │ │ │ │ ├── device_8c.html │ │ │ │ │ ├── devsupp_8c-source.html │ │ │ │ │ ├── devsupp_8c.html │ │ │ │ │ ├── display_8c-source.html │ │ │ │ │ ├── display_8c.html │ │ │ │ │ ├── dox.css │ │ │ │ │ ├── eeprom_8c-source.html │ │ │ │ │ ├── ext_devs.html │ │ │ │ │ ├── files.html │ │ │ │ │ ├── flash_8c-source.html │ │ │ │ │ ├── flash_8c.html │ │ │ │ │ ├── gdbserver_8c-source.html │ │ │ │ │ ├── gdbserver_8c.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── insn_decoder.html │ │ │ │ │ ├── interrupts.html │ │ │ │ │ ├── intvects_8c-source.html │ │ │ │ │ ├── main.html │ │ │ │ │ ├── main_8c-source.html │ │ │ │ │ ├── memory_8c-source.html │ │ │ │ │ ├── memory_8c.html │ │ │ │ │ ├── memory_management.html │ │ │ │ │ ├── object_system.html │ │ │ │ │ ├── op__names_8c-source.html │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── ports_8c-source.html │ │ │ │ │ ├── ports_8c.html │ │ │ │ │ ├── register_8c-source.html │ │ │ │ │ ├── sig_8c-source.html │ │ │ │ │ ├── sig_8c.html │ │ │ │ │ ├── spi_8c-source.html │ │ │ │ │ ├── spi_8c.html │ │ │ │ │ ├── sram_8c-source.html │ │ │ │ │ ├── stack_8c-source.html │ │ │ │ │ ├── stack_8c.html │ │ │ │ │ ├── storage_8c-source.html │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── timers_8c-source.html │ │ │ │ │ ├── timers_8c.html │ │ │ │ │ ├── todo.html │ │ │ │ │ ├── tree.html │ │ │ │ │ ├── uart_8c-source.html │ │ │ │ │ ├── uart_8c.html │ │ │ │ │ ├── usb_8c-source.html │ │ │ │ │ ├── usb_8c.html │ │ │ │ │ ├── utils_8c-source.html │ │ │ │ │ ├── utils_8c.html │ │ │ │ │ └── virtual_devs.html │ │ │ │ └── simulavr.pdf │ │ │ └── srecord │ │ │ │ └── srecord-1.38.pdf │ │ │ ├── etc │ │ │ └── avrdude.conf │ │ │ ├── lib │ │ │ ├── dde1.2 │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── tcldde12.dll │ │ │ ├── gcc │ │ │ │ └── avr │ │ │ │ │ └── 4.3.2 │ │ │ │ │ ├── include-fixed │ │ │ │ │ ├── README │ │ │ │ │ ├── fixed │ │ │ │ │ ├── limits.h │ │ │ │ │ └── syslimits.h │ │ │ │ │ ├── include │ │ │ │ │ ├── float.h │ │ │ │ │ ├── iso646.h │ │ │ │ │ ├── objc │ │ │ │ │ │ ├── NXConstStr.h │ │ │ │ │ │ ├── Object.h │ │ │ │ │ │ ├── Protocol.h │ │ │ │ │ │ ├── encoding.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── objc-api.h │ │ │ │ │ │ ├── objc-decls.h │ │ │ │ │ │ ├── objc-list.h │ │ │ │ │ │ ├── objc.h │ │ │ │ │ │ ├── sarray.h │ │ │ │ │ │ ├── thr.h │ │ │ │ │ │ └── typedstream.h │ │ │ │ │ ├── stdarg.h │ │ │ │ │ ├── stdbool.h │ │ │ │ │ ├── stddef.h │ │ │ │ │ ├── stdfix.h │ │ │ │ │ ├── tgmath.h │ │ │ │ │ ├── unwind.h │ │ │ │ │ └── varargs.h │ │ │ │ │ └── install-tools │ │ │ │ │ ├── fixinc_list │ │ │ │ │ ├── gsyslimits.h │ │ │ │ │ ├── include │ │ │ │ │ ├── README │ │ │ │ │ └── limits.h │ │ │ │ │ ├── macro_list │ │ │ │ │ └── mkheaders.conf │ │ │ ├── insight1.0 │ │ │ │ └── plugins.tcl │ │ │ ├── itcl3.2 │ │ │ │ └── pkgIndex.tcl │ │ │ ├── itk3.2 │ │ │ │ └── pkgIndex.tcl │ │ │ ├── reg1.1 │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── tclreg11.dll │ │ │ ├── tclConfig.sh │ │ │ ├── tk8.4 │ │ │ │ └── pkgIndex.tcl │ │ │ └── tkConfig.sh │ │ │ ├── libexec │ │ │ └── gcc │ │ │ │ └── avr │ │ │ │ └── 4.3.2 │ │ │ │ ├── cc1.exe │ │ │ │ ├── cc1obj.exe │ │ │ │ ├── cc1plus.exe │ │ │ │ ├── collect2.exe │ │ │ │ └── install-tools │ │ │ │ ├── fix-header.exe │ │ │ │ ├── fixinc.sh │ │ │ │ ├── fixincl.exe │ │ │ │ ├── fixproto │ │ │ │ ├── mkheaders │ │ │ │ └── mkinstalldirs │ │ │ ├── mfile │ │ │ ├── README │ │ │ ├── help.html │ │ │ ├── htmlview.tcl │ │ │ ├── htmlview.xbm │ │ │ ├── makefile_template │ │ │ ├── mfile.tcl │ │ │ └── mfile.xbm │ │ │ ├── path1.log │ │ │ ├── path2.log │ │ │ ├── pn │ │ │ ├── Microsoft.VC80.CRT │ │ │ │ ├── Microsoft.VC80.CRT.manifest │ │ │ │ ├── msvcm80.dll │ │ │ │ ├── msvcp80.dll │ │ │ │ └── msvcr80.dll │ │ │ ├── SciLexer.dll │ │ │ ├── clips │ │ │ │ ├── ascii.clips │ │ │ │ ├── aspnet.clips │ │ │ │ ├── csharpscheme.clips │ │ │ │ ├── cstandard.clips │ │ │ │ ├── docbook.clips │ │ │ │ ├── htmlchars.clips │ │ │ │ ├── java.clips │ │ │ │ ├── nant.clips │ │ │ │ ├── pascal.clips │ │ │ │ ├── phpcontrol.clips │ │ │ │ ├── pl.clips │ │ │ │ ├── pythonscheme.clips │ │ │ │ ├── vb.clips │ │ │ │ ├── winavr.clips │ │ │ │ ├── xhtml.clips │ │ │ │ └── xmlscheme.clips │ │ │ ├── config.xml │ │ │ ├── credits.txt │ │ │ ├── ctags.exe │ │ │ ├── ctags_COPYING │ │ │ ├── ctags_README │ │ │ ├── dbghelp.dll │ │ │ ├── help │ │ │ │ └── pn2.chm │ │ │ ├── history.txt │ │ │ ├── libexpat.dll │ │ │ ├── license.html │ │ │ ├── license.txt │ │ │ ├── pcre-license.txt │ │ │ ├── pn.exe │ │ │ ├── pnse.dll │ │ │ ├── presets │ │ │ │ ├── Dark.xml │ │ │ │ └── Default.xml │ │ │ ├── schemes │ │ │ │ ├── WebFiles.scheme │ │ │ │ ├── ada.scheme │ │ │ │ ├── asm.scheme │ │ │ │ ├── avrasm.scheme │ │ │ │ ├── bash.scheme │ │ │ │ ├── cpp.scheme │ │ │ │ ├── customscheme.lexer │ │ │ │ ├── d.scheme │ │ │ │ ├── docbook.scheme │ │ │ │ ├── extmap.dat │ │ │ │ ├── fortran.scheme │ │ │ │ ├── latex.scheme │ │ │ │ ├── lua.scheme │ │ │ │ ├── master.scheme │ │ │ │ ├── matlab.scheme │ │ │ │ ├── misc.scheme │ │ │ │ ├── modula2.scheme │ │ │ │ ├── nsis2.scheme │ │ │ │ ├── pascal.scheme │ │ │ │ ├── perl.scheme │ │ │ │ ├── phpscript.scheme │ │ │ │ ├── python.scheme │ │ │ │ ├── ruby.scheme │ │ │ │ ├── specman.scheme │ │ │ │ ├── sql.scheme │ │ │ │ ├── tcl.scheme │ │ │ │ ├── vb.scheme │ │ │ │ ├── verilog.scheme │ │ │ │ ├── vhdl.scheme │ │ │ │ └── xml.scheme │ │ │ ├── taggers │ │ │ │ ├── ctags │ │ │ │ │ ├── additionalLanguages.conf │ │ │ │ │ └── additionalSupportedSchemes.ini │ │ │ │ └── ctagsnavigator.dll │ │ │ └── tools │ │ │ │ └── WinAVR.xml │ │ │ ├── sample │ │ │ ├── Makefile │ │ │ ├── Makefile.lib │ │ │ ├── Makefile.wpo │ │ │ ├── gcc.bat │ │ │ └── gcc2.bat │ │ │ ├── share │ │ │ ├── insight1.0 │ │ │ │ ├── about.tcl │ │ │ │ ├── actiondlg.tcl │ │ │ │ ├── attachdlg.itb │ │ │ │ ├── attachdlg.ith │ │ │ │ ├── blockframe.itb │ │ │ │ ├── blockframe.ith │ │ │ │ ├── bpwin.itb │ │ │ │ ├── bpwin.ith │ │ │ │ ├── browserwin.itb │ │ │ │ ├── browserwin.ith │ │ │ │ ├── console.itb │ │ │ │ ├── console.ith │ │ │ │ ├── cspref.itb │ │ │ │ ├── cspref.ith │ │ │ │ ├── debugwin.itb │ │ │ │ ├── debugwin.ith │ │ │ │ ├── download.itb │ │ │ │ ├── download.ith │ │ │ │ ├── editor.tcl │ │ │ │ ├── ehandler.itb │ │ │ │ ├── ehandler.ith │ │ │ │ ├── embeddedwin.ith │ │ │ │ ├── gdbevent.itb │ │ │ │ ├── gdbevent.ith │ │ │ │ ├── gdbmenubar.itcl │ │ │ │ ├── gdbtoolbar.itcl │ │ │ │ ├── gdbwin.ith │ │ │ │ ├── globalpref.itb │ │ │ │ ├── globalpref.ith │ │ │ │ ├── help │ │ │ │ │ ├── breakpoint.html │ │ │ │ │ ├── browser.html │ │ │ │ │ ├── console.html │ │ │ │ │ ├── debug.html │ │ │ │ │ ├── gbl_pref.html │ │ │ │ │ ├── help.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── browser1.png │ │ │ │ │ │ ├── browser2.png │ │ │ │ │ │ ├── frame_info.gif │ │ │ │ │ │ ├── insightbwr.png │ │ │ │ │ │ ├── mem_menu.gif │ │ │ │ │ │ ├── mem_popup.gif │ │ │ │ │ │ ├── mem_pref.gif │ │ │ │ │ │ ├── reg.png │ │ │ │ │ │ ├── reg_menu.png │ │ │ │ │ │ ├── src_bal.gif │ │ │ │ │ │ ├── src_bp_bal.gif │ │ │ │ │ │ ├── src_bpop.gif │ │ │ │ │ │ ├── src_menu.gif │ │ │ │ │ │ ├── src_pop.gif │ │ │ │ │ │ ├── src_stat.gif │ │ │ │ │ │ ├── src_thread.gif │ │ │ │ │ │ ├── src_toolbar.gif │ │ │ │ │ │ └── watch.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── license.html │ │ │ │ │ ├── locals.html │ │ │ │ │ ├── memory.html │ │ │ │ │ ├── register.html │ │ │ │ │ ├── session.html │ │ │ │ │ ├── source.html │ │ │ │ │ ├── src_pref.html │ │ │ │ │ ├── stack.html │ │ │ │ │ ├── target.html │ │ │ │ │ ├── thread.html │ │ │ │ │ ├── trace │ │ │ │ │ │ ├── console.html │ │ │ │ │ │ ├── gbl_pref.html │ │ │ │ │ │ ├── help.html │ │ │ │ │ │ ├── index.toc │ │ │ │ │ │ ├── license.html │ │ │ │ │ │ ├── locals.html │ │ │ │ │ │ ├── memory.html │ │ │ │ │ │ ├── reg_pref.html │ │ │ │ │ │ ├── register.html │ │ │ │ │ │ ├── source.html │ │ │ │ │ │ ├── src_pref.html │ │ │ │ │ │ ├── stack.html │ │ │ │ │ │ ├── target.html │ │ │ │ │ │ ├── tdump.html │ │ │ │ │ │ ├── tp.html │ │ │ │ │ │ ├── tracedlg.html │ │ │ │ │ │ └── watch.html │ │ │ │ │ └── watch.html │ │ │ │ ├── helpviewer.tcl │ │ │ │ ├── images │ │ │ │ │ ├── Movie_off.gif │ │ │ │ │ ├── Movie_on.gif │ │ │ │ │ ├── bottom.gif │ │ │ │ │ ├── bp.gif │ │ │ │ │ ├── check.gif │ │ │ │ │ ├── console.gif │ │ │ │ │ ├── continue.gif │ │ │ │ │ ├── down.gif │ │ │ │ │ ├── edit.gif │ │ │ │ │ ├── finish.gif │ │ │ │ │ ├── gdbtk_icon.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── home.gif │ │ │ │ │ ├── icons.txt │ │ │ │ │ ├── insight.gif │ │ │ │ │ ├── less.gif │ │ │ │ │ ├── memory.gif │ │ │ │ │ ├── more.gif │ │ │ │ │ ├── next.gif │ │ │ │ │ ├── next_check.gif │ │ │ │ │ ├── next_frame.gif │ │ │ │ │ ├── next_hit.gif │ │ │ │ │ ├── next_line.gif │ │ │ │ │ ├── nexti.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ ├── prev_hit.gif │ │ │ │ │ ├── reg.gif │ │ │ │ │ ├── rewind.gif │ │ │ │ │ ├── run.gif │ │ │ │ │ ├── run_expt.gif │ │ │ │ │ ├── src.gif │ │ │ │ │ ├── stack.gif │ │ │ │ │ ├── step.gif │ │ │ │ │ ├── stepi.gif │ │ │ │ │ ├── stop.gif │ │ │ │ │ ├── tdump.gif │ │ │ │ │ ├── tp.gif │ │ │ │ │ ├── up.gif │ │ │ │ │ ├── vars.gif │ │ │ │ │ ├── watch.gif │ │ │ │ │ └── watch_movie.gif │ │ │ │ ├── images2 │ │ │ │ │ ├── Movie_off.gif │ │ │ │ │ ├── Movie_on.gif │ │ │ │ │ ├── bottom.gif │ │ │ │ │ ├── bp.gif │ │ │ │ │ ├── check.gif │ │ │ │ │ ├── console.gif │ │ │ │ │ ├── continue.gif │ │ │ │ │ ├── down.gif │ │ │ │ │ ├── edit.gif │ │ │ │ │ ├── finish.gif │ │ │ │ │ ├── function.gif │ │ │ │ │ ├── gdbtk_icon.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── home.gif │ │ │ │ │ ├── icons.txt │ │ │ │ │ ├── insight.gif │ │ │ │ │ ├── less.gif │ │ │ │ │ ├── memory.gif │ │ │ │ │ ├── more.gif │ │ │ │ │ ├── next.gif │ │ │ │ │ ├── next_check.gif │ │ │ │ │ ├── next_frame.gif │ │ │ │ │ ├── next_hit.gif │ │ │ │ │ ├── next_line.gif │ │ │ │ │ ├── nexti.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ ├── prev_hit.gif │ │ │ │ │ ├── reg.gif │ │ │ │ │ ├── rewind.gif │ │ │ │ │ ├── run.gif │ │ │ │ │ ├── run_expt.gif │ │ │ │ │ ├── src.gif │ │ │ │ │ ├── stack.gif │ │ │ │ │ ├── step.gif │ │ │ │ │ ├── stepi.gif │ │ │ │ │ ├── stop.gif │ │ │ │ │ ├── target.gif │ │ │ │ │ ├── tdump.gif │ │ │ │ │ ├── tp.gif │ │ │ │ │ ├── up.gif │ │ │ │ │ ├── vars.gif │ │ │ │ │ ├── watch.gif │ │ │ │ │ └── watch_movie.gif │ │ │ │ ├── interface.tcl │ │ │ │ ├── ipc.tcl │ │ │ │ ├── ipcpref.itb │ │ │ │ ├── ipcpref.ith │ │ │ │ ├── kod.itb │ │ │ │ ├── kod.ith │ │ │ │ ├── locals.tcl │ │ │ │ ├── main.tcl │ │ │ │ ├── managedwin.itb │ │ │ │ ├── managedwin.ith │ │ │ │ ├── mempref.itb │ │ │ │ ├── mempref.ith │ │ │ │ ├── memwin.itb │ │ │ │ ├── memwin.ith │ │ │ │ ├── modal.tcl │ │ │ │ ├── pluginwin.itcl │ │ │ │ ├── prefs.tcl │ │ │ │ ├── process.itb │ │ │ │ ├── process.ith │ │ │ │ ├── regwin.itb │ │ │ │ ├── regwin.ith │ │ │ │ ├── session.tcl │ │ │ │ ├── srcbar.itcl │ │ │ │ ├── srcpref.itb │ │ │ │ ├── srcpref.ith │ │ │ │ ├── srctextwin.itb │ │ │ │ ├── srctextwin.ith │ │ │ │ ├── srcwin.itb │ │ │ │ ├── srcwin.ith │ │ │ │ ├── stackwin.itb │ │ │ │ ├── stackwin.ith │ │ │ │ ├── targetselection.itb │ │ │ │ ├── targetselection.ith │ │ │ │ ├── tclIndex │ │ │ │ ├── tdump.tcl │ │ │ │ ├── tfind_args.tcl │ │ │ │ ├── toplevelwin.ith │ │ │ │ ├── tracedlg.tcl │ │ │ │ ├── tty.tcl │ │ │ │ ├── util.tcl │ │ │ │ ├── vartree.itb │ │ │ │ ├── vartree.ith │ │ │ │ ├── warning.tcl │ │ │ │ └── watch.tcl │ │ │ ├── itcl3.2 │ │ │ │ └── itcl.tcl │ │ │ ├── itk3.2 │ │ │ │ ├── Archetype.itk │ │ │ │ ├── Toplevel.itk │ │ │ │ ├── Widget.itk │ │ │ │ ├── itk.tcl │ │ │ │ └── tclIndex │ │ │ ├── iwidgets4.0.1 │ │ │ │ ├── demos │ │ │ │ │ ├── buttonbox │ │ │ │ │ ├── calendar │ │ │ │ │ ├── canvasprintbox │ │ │ │ │ ├── canvasprintdialog │ │ │ │ │ ├── catalog │ │ │ │ │ ├── checkbox │ │ │ │ │ ├── combobox │ │ │ │ │ ├── dateentry │ │ │ │ │ ├── datefield │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── dialog │ │ │ │ │ ├── dialogshell │ │ │ │ │ ├── disjointlistbox │ │ │ │ │ ├── entryfield │ │ │ │ │ ├── extbutton │ │ │ │ │ ├── extfileselectionbox │ │ │ │ │ ├── extfileselectiondialog │ │ │ │ │ ├── feedback │ │ │ │ │ ├── fileselectionbox │ │ │ │ │ ├── fileselectiondialog │ │ │ │ │ ├── finddialog │ │ │ │ │ ├── hierarchy │ │ │ │ │ ├── html │ │ │ │ │ │ ├── buttonbox.n.html │ │ │ │ │ │ ├── calendar.n.html │ │ │ │ │ │ ├── canvasprintbox.n.html │ │ │ │ │ │ ├── canvasprintdialog.n.html │ │ │ │ │ │ ├── checkbox.n.html │ │ │ │ │ │ ├── combobox.n.html │ │ │ │ │ │ ├── dateentry.n.html │ │ │ │ │ │ ├── datefield.n.html │ │ │ │ │ │ ├── dialog.n.html │ │ │ │ │ │ ├── dialogshell.n.html │ │ │ │ │ │ ├── disjointlistbox.n.html │ │ │ │ │ │ ├── entryfield.n.html │ │ │ │ │ │ ├── extbutton.n.html │ │ │ │ │ │ ├── extfileselectionbox.n.html │ │ │ │ │ │ ├── extfileselectiondialog.n.html │ │ │ │ │ │ ├── feedback.n.html │ │ │ │ │ │ ├── fileselectionbox.n.html │ │ │ │ │ │ ├── fileselectiondialog.n.html │ │ │ │ │ │ ├── finddialog.n.html │ │ │ │ │ │ ├── hierarchy.n.html │ │ │ │ │ │ ├── hyperhelp.n.html │ │ │ │ │ │ ├── iwidgets4.0.0UserCmds.html │ │ │ │ │ │ ├── labeledframe.n.html │ │ │ │ │ │ ├── labeledwidget.n.html │ │ │ │ │ │ ├── mainwindow.n.html │ │ │ │ │ │ ├── menubar.n.html │ │ │ │ │ │ ├── messagebox.n.html │ │ │ │ │ │ ├── messagedialog.n.html │ │ │ │ │ │ ├── notebook.n.html │ │ │ │ │ │ ├── optionmenu.n.html │ │ │ │ │ │ ├── panedwindow.n.html │ │ │ │ │ │ ├── promptdialog.n.html │ │ │ │ │ │ ├── pushbutton.n.html │ │ │ │ │ │ ├── radiobox.n.html │ │ │ │ │ │ ├── scopedobject.n.html │ │ │ │ │ │ ├── scrolledcanvas.n.html │ │ │ │ │ │ ├── scrolledframe.n.html │ │ │ │ │ │ ├── scrolledhtml.n.html │ │ │ │ │ │ ├── scrolledlistbox.n.html │ │ │ │ │ │ ├── scrolledtext.n.html │ │ │ │ │ │ ├── selectionbox.n.html │ │ │ │ │ │ ├── selectiondialog.n.html │ │ │ │ │ │ ├── shell.n.html │ │ │ │ │ │ ├── spindate.n.html │ │ │ │ │ │ ├── spinint.n.html │ │ │ │ │ │ ├── spinner.n.html │ │ │ │ │ │ ├── spintime.n.html │ │ │ │ │ │ ├── tabnotebook.n.html │ │ │ │ │ │ ├── tabset.n.html │ │ │ │ │ │ ├── timeentry.n.html │ │ │ │ │ │ ├── timefield.n.html │ │ │ │ │ │ ├── toolbar.n.html │ │ │ │ │ │ └── watch.n.html │ │ │ │ │ ├── hyperhelp │ │ │ │ │ ├── images │ │ │ │ │ │ ├── box.xbm │ │ │ │ │ │ ├── clear.gif │ │ │ │ │ │ ├── close.gif │ │ │ │ │ │ ├── copy.gif │ │ │ │ │ │ ├── cut.gif │ │ │ │ │ │ ├── exit.gif │ │ │ │ │ │ ├── find.gif │ │ │ │ │ │ ├── help.gif │ │ │ │ │ │ ├── line.xbm │ │ │ │ │ │ ├── mag.gif │ │ │ │ │ │ ├── new.gif │ │ │ │ │ │ ├── open.gif │ │ │ │ │ │ ├── oval.xbm │ │ │ │ │ │ ├── paste.gif │ │ │ │ │ │ ├── points.xbm │ │ │ │ │ │ ├── poly.gif │ │ │ │ │ │ ├── print.gif │ │ │ │ │ │ ├── ruler.gif │ │ │ │ │ │ ├── save.gif │ │ │ │ │ │ ├── select.gif │ │ │ │ │ │ └── text.xbm │ │ │ │ │ ├── iwidgets.gif │ │ │ │ │ ├── labeledframe │ │ │ │ │ ├── labeledwidget │ │ │ │ │ ├── mainwindow │ │ │ │ │ ├── menubar │ │ │ │ │ ├── messagebox │ │ │ │ │ ├── messagedialog │ │ │ │ │ ├── notebook │ │ │ │ │ ├── optionmenu │ │ │ │ │ ├── panedwindow │ │ │ │ │ ├── promptdialog │ │ │ │ │ ├── pushbutton │ │ │ │ │ ├── radiobox │ │ │ │ │ ├── scopedobject │ │ │ │ │ ├── scrolledcanvas │ │ │ │ │ ├── scrolledframe │ │ │ │ │ ├── scrolledhtml │ │ │ │ │ ├── scrolledlistbox │ │ │ │ │ ├── scrolledtext │ │ │ │ │ ├── selectionbox │ │ │ │ │ ├── selectiondialog │ │ │ │ │ ├── shell │ │ │ │ │ ├── spindate │ │ │ │ │ ├── spinint │ │ │ │ │ ├── spinner │ │ │ │ │ ├── spintime │ │ │ │ │ ├── tabnotebook │ │ │ │ │ ├── tabset │ │ │ │ │ ├── timeentry │ │ │ │ │ ├── timefield │ │ │ │ │ ├── toolbar │ │ │ │ │ └── watch │ │ │ │ ├── iwidgets.tcl │ │ │ │ ├── license.terms │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── scripts │ │ │ │ │ ├── buttonbox.itk │ │ │ │ │ ├── calendar.itk │ │ │ │ │ ├── canvasprintbox.itk │ │ │ │ │ ├── canvasprintdialog.itk │ │ │ │ │ ├── checkbox.itk │ │ │ │ │ ├── colors.itcl │ │ │ │ │ ├── combobox.itk │ │ │ │ │ ├── dateentry.itk │ │ │ │ │ ├── datefield.itk │ │ │ │ │ ├── dialog.itk │ │ │ │ │ ├── dialogshell.itk │ │ │ │ │ ├── disjointlistbox.itk │ │ │ │ │ ├── entryfield.itk │ │ │ │ │ ├── extbutton.itk │ │ │ │ │ ├── extfileselectionbox.itk │ │ │ │ │ ├── extfileselectiondialog.itk │ │ │ │ │ ├── feedback.itk │ │ │ │ │ ├── fileselectionbox.itk │ │ │ │ │ ├── fileselectiondialog.itk │ │ │ │ │ ├── finddialog.itk │ │ │ │ │ ├── hierarchy.itk │ │ │ │ │ ├── hyperhelp.itk │ │ │ │ │ ├── labeledframe.itk │ │ │ │ │ ├── labeledwidget.itk │ │ │ │ │ ├── mainwindow.itk │ │ │ │ │ ├── menubar.itk │ │ │ │ │ ├── messagebox.itk │ │ │ │ │ ├── messagedialog.itk │ │ │ │ │ ├── notebook.itk │ │ │ │ │ ├── optionmenu.itk │ │ │ │ │ ├── pane.itk │ │ │ │ │ ├── panedwindow.itk │ │ │ │ │ ├── promptdialog.itk │ │ │ │ │ ├── pushbutton.itk │ │ │ │ │ ├── radiobox.itk │ │ │ │ │ ├── regexpfield.itk │ │ │ │ │ ├── roman.itcl │ │ │ │ │ ├── scopedobject.itcl │ │ │ │ │ ├── scrolledcanvas.itk │ │ │ │ │ ├── scrolledframe.itk │ │ │ │ │ ├── scrolledhtml.itk │ │ │ │ │ ├── scrolledlistbox.itk │ │ │ │ │ ├── scrolledtext.itk │ │ │ │ │ ├── scrolledwidget.itk │ │ │ │ │ ├── selectionbox.itk │ │ │ │ │ ├── selectiondialog.itk │ │ │ │ │ ├── shell.itk │ │ │ │ │ ├── spindate.itk │ │ │ │ │ ├── spinint.itk │ │ │ │ │ ├── spinner.itk │ │ │ │ │ ├── spintime.itk │ │ │ │ │ ├── tabnotebook.itk │ │ │ │ │ ├── tabset.itk │ │ │ │ │ ├── tclIndex │ │ │ │ │ ├── timeentry.itk │ │ │ │ │ ├── timefield.itk │ │ │ │ │ ├── toolbar.itk │ │ │ │ │ ├── unknownimage.gif │ │ │ │ │ └── watch.itk │ │ │ ├── locale │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── bfd.mo │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── bfd.mo │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── bfd.mo │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── bfd.mo │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── bfd.mo │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── bfd.mo │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── rw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── bfd.mo │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── bfd.mo │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── bfd.mo │ │ │ │ │ │ └── opcodes.mo │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── bfd.mo │ │ │ │ │ │ └── opcodes.mo │ │ │ │ └── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── bfd.mo │ │ │ │ │ └── opcodes.mo │ │ │ ├── redhat │ │ │ │ └── gui │ │ │ │ │ ├── advice.tcl │ │ │ │ │ ├── balloon.tcl │ │ │ │ │ ├── bbox.tcl │ │ │ │ │ ├── bgerror.tcl │ │ │ │ │ ├── bindings.tcl │ │ │ │ │ ├── canvas.tcl │ │ │ │ │ ├── center.tcl │ │ │ │ │ ├── cframe.tcl │ │ │ │ │ ├── combobox.tcl │ │ │ │ │ ├── debug.tcl │ │ │ │ │ ├── def.tcl │ │ │ │ │ ├── font.tcl │ │ │ │ │ ├── gensym.tcl │ │ │ │ │ ├── gettext.tcl │ │ │ │ │ ├── hooks.tcl │ │ │ │ │ ├── internet.tcl │ │ │ │ │ ├── lframe.tcl │ │ │ │ │ ├── list.tcl │ │ │ │ │ ├── looknfeel.tcl │ │ │ │ │ ├── menu.tcl │ │ │ │ │ ├── mono.tcl │ │ │ │ │ ├── multibox.tcl │ │ │ │ │ ├── pane.tcl │ │ │ │ │ ├── panedwindow.tcl │ │ │ │ │ ├── parse_args.tcl │ │ │ │ │ ├── path.tcl │ │ │ │ │ ├── pkgIndex.tcl │ │ │ │ │ ├── postghost.tcl │ │ │ │ │ ├── prefs.tcl │ │ │ │ │ ├── print.tcl │ │ │ │ │ ├── sendpr.tcl │ │ │ │ │ ├── tclIndex │ │ │ │ │ ├── toolbar.tcl │ │ │ │ │ ├── topbind.tcl │ │ │ │ │ ├── ulset.tcl │ │ │ │ │ ├── ventry.tcl │ │ │ │ │ ├── wframe.tcl │ │ │ │ │ └── wingrab.tcl │ │ │ ├── tcl8.4 │ │ │ │ ├── auto.tcl │ │ │ │ ├── encoding │ │ │ │ │ ├── ascii.enc │ │ │ │ │ ├── big5.enc │ │ │ │ │ ├── cp1250.enc │ │ │ │ │ ├── cp1251.enc │ │ │ │ │ ├── cp1252.enc │ │ │ │ │ ├── cp1253.enc │ │ │ │ │ ├── cp1254.enc │ │ │ │ │ ├── cp1255.enc │ │ │ │ │ ├── cp1256.enc │ │ │ │ │ ├── cp1257.enc │ │ │ │ │ ├── cp1258.enc │ │ │ │ │ ├── cp437.enc │ │ │ │ │ ├── cp737.enc │ │ │ │ │ ├── cp775.enc │ │ │ │ │ ├── cp850.enc │ │ │ │ │ ├── cp852.enc │ │ │ │ │ ├── cp855.enc │ │ │ │ │ ├── cp857.enc │ │ │ │ │ ├── cp860.enc │ │ │ │ │ ├── cp861.enc │ │ │ │ │ ├── cp862.enc │ │ │ │ │ ├── cp863.enc │ │ │ │ │ ├── cp864.enc │ │ │ │ │ ├── cp865.enc │ │ │ │ │ ├── cp866.enc │ │ │ │ │ ├── cp869.enc │ │ │ │ │ ├── cp874.enc │ │ │ │ │ ├── cp932.enc │ │ │ │ │ ├── cp936.enc │ │ │ │ │ ├── cp949.enc │ │ │ │ │ ├── cp950.enc │ │ │ │ │ ├── dingbats.enc │ │ │ │ │ ├── ebcdic.enc │ │ │ │ │ ├── euc-cn.enc │ │ │ │ │ ├── euc-jp.enc │ │ │ │ │ ├── euc-kr.enc │ │ │ │ │ ├── gb12345.enc │ │ │ │ │ ├── gb1988.enc │ │ │ │ │ ├── gb2312.enc │ │ │ │ │ ├── iso2022-jp.enc │ │ │ │ │ ├── iso2022-kr.enc │ │ │ │ │ ├── iso2022.enc │ │ │ │ │ ├── iso8859-1.enc │ │ │ │ │ ├── iso8859-10.enc │ │ │ │ │ ├── iso8859-13.enc │ │ │ │ │ ├── iso8859-14.enc │ │ │ │ │ ├── iso8859-15.enc │ │ │ │ │ ├── iso8859-16.enc │ │ │ │ │ ├── iso8859-2.enc │ │ │ │ │ ├── iso8859-3.enc │ │ │ │ │ ├── iso8859-4.enc │ │ │ │ │ ├── iso8859-5.enc │ │ │ │ │ ├── iso8859-6.enc │ │ │ │ │ ├── iso8859-7.enc │ │ │ │ │ ├── iso8859-8.enc │ │ │ │ │ ├── iso8859-9.enc │ │ │ │ │ ├── jis0201.enc │ │ │ │ │ ├── jis0208.enc │ │ │ │ │ ├── jis0212.enc │ │ │ │ │ ├── koi8-r.enc │ │ │ │ │ ├── koi8-u.enc │ │ │ │ │ ├── ksc5601.enc │ │ │ │ │ ├── macCentEuro.enc │ │ │ │ │ ├── macCroatian.enc │ │ │ │ │ ├── macCyrillic.enc │ │ │ │ │ ├── macDingbats.enc │ │ │ │ │ ├── macGreek.enc │ │ │ │ │ ├── macIceland.enc │ │ │ │ │ ├── macJapan.enc │ │ │ │ │ ├── macRoman.enc │ │ │ │ │ ├── macRomania.enc │ │ │ │ │ ├── macThai.enc │ │ │ │ │ ├── macTurkish.enc │ │ │ │ │ ├── macUkraine.enc │ │ │ │ │ ├── shiftjis.enc │ │ │ │ │ ├── symbol.enc │ │ │ │ │ └── tis-620.enc │ │ │ │ ├── history.tcl │ │ │ │ ├── http1.0 │ │ │ │ │ ├── http.tcl │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ ├── http2.4 │ │ │ │ │ ├── http.tcl │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ ├── init.tcl │ │ │ │ ├── ldAout.tcl │ │ │ │ ├── msgcat1.3 │ │ │ │ │ ├── msgcat.tcl │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ ├── opt0.4 │ │ │ │ │ ├── optparse.tcl │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ ├── package.tcl │ │ │ │ ├── parray.tcl │ │ │ │ ├── safe.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tcltest2.2 │ │ │ │ │ ├── pkgIndex.tcl │ │ │ │ │ └── tcltest.tcl │ │ │ │ └── word.tcl │ │ │ └── tk8.4 │ │ │ │ ├── bgerror.tcl │ │ │ │ ├── button.tcl │ │ │ │ ├── choosedir.tcl │ │ │ │ ├── clrpick.tcl │ │ │ │ ├── comdlg.tcl │ │ │ │ ├── console.tcl │ │ │ │ ├── demos │ │ │ │ ├── README │ │ │ │ ├── arrow.tcl │ │ │ │ ├── bind.tcl │ │ │ │ ├── bitmap.tcl │ │ │ │ ├── browse │ │ │ │ ├── button.tcl │ │ │ │ ├── check.tcl │ │ │ │ ├── clrpick.tcl │ │ │ │ ├── colors.tcl │ │ │ │ ├── cscroll.tcl │ │ │ │ ├── ctext.tcl │ │ │ │ ├── dialog1.tcl │ │ │ │ ├── dialog2.tcl │ │ │ │ ├── entry1.tcl │ │ │ │ ├── entry2.tcl │ │ │ │ ├── entry3.tcl │ │ │ │ ├── filebox.tcl │ │ │ │ ├── floor.tcl │ │ │ │ ├── form.tcl │ │ │ │ ├── hello │ │ │ │ ├── hscale.tcl │ │ │ │ ├── icon.tcl │ │ │ │ ├── image1.tcl │ │ │ │ ├── image2.tcl │ │ │ │ ├── images │ │ │ │ │ ├── earth.gif │ │ │ │ │ ├── earthris.gif │ │ │ │ │ ├── face.bmp │ │ │ │ │ ├── flagdown.bmp │ │ │ │ │ ├── flagup.bmp │ │ │ │ │ ├── gray25.bmp │ │ │ │ │ ├── letters.bmp │ │ │ │ │ ├── noletter.bmp │ │ │ │ │ ├── pattern.bmp │ │ │ │ │ ├── tcllogo.gif │ │ │ │ │ └── teapot.ppm │ │ │ │ ├── items.tcl │ │ │ │ ├── ixset │ │ │ │ ├── label.tcl │ │ │ │ ├── labelframe.tcl │ │ │ │ ├── license.terms │ │ │ │ ├── menu.tcl │ │ │ │ ├── menubu.tcl │ │ │ │ ├── msgbox.tcl │ │ │ │ ├── paned1.tcl │ │ │ │ ├── paned2.tcl │ │ │ │ ├── plot.tcl │ │ │ │ ├── puzzle.tcl │ │ │ │ ├── radio.tcl │ │ │ │ ├── rmt │ │ │ │ ├── rolodex │ │ │ │ ├── ruler.tcl │ │ │ │ ├── sayings.tcl │ │ │ │ ├── search.tcl │ │ │ │ ├── spin.tcl │ │ │ │ ├── square │ │ │ │ ├── states.tcl │ │ │ │ ├── style.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tcolor │ │ │ │ ├── text.tcl │ │ │ │ ├── timer │ │ │ │ ├── twind.tcl │ │ │ │ ├── vscale.tcl │ │ │ │ └── widget │ │ │ │ ├── dialog.tcl │ │ │ │ ├── entry.tcl │ │ │ │ ├── focus.tcl │ │ │ │ ├── images │ │ │ │ ├── README │ │ │ │ ├── logo.eps │ │ │ │ ├── logo100.gif │ │ │ │ ├── logo64.gif │ │ │ │ ├── logoLarge.gif │ │ │ │ ├── logoMed.gif │ │ │ │ ├── pwrdLogo.eps │ │ │ │ ├── pwrdLogo100.gif │ │ │ │ ├── pwrdLogo150.gif │ │ │ │ ├── pwrdLogo175.gif │ │ │ │ ├── pwrdLogo200.gif │ │ │ │ ├── pwrdLogo75.gif │ │ │ │ └── tai-ku.gif │ │ │ │ ├── listbox.tcl │ │ │ │ ├── menu.tcl │ │ │ │ ├── mkpsenc.tcl │ │ │ │ ├── msgbox.tcl │ │ │ │ ├── msgs │ │ │ │ ├── cs.msg │ │ │ │ ├── de.msg │ │ │ │ ├── el.msg │ │ │ │ ├── en.msg │ │ │ │ ├── en_gb.msg │ │ │ │ ├── es.msg │ │ │ │ ├── fr.msg │ │ │ │ ├── it.msg │ │ │ │ ├── nl.msg │ │ │ │ └── ru.msg │ │ │ │ ├── obsolete.tcl │ │ │ │ ├── optMenu.tcl │ │ │ │ ├── palette.tcl │ │ │ │ ├── panedwindow.tcl │ │ │ │ ├── prolog.ps │ │ │ │ ├── safetk.tcl │ │ │ │ ├── scale.tcl │ │ │ │ ├── scrlbar.tcl │ │ │ │ ├── spinbox.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tearoff.tcl │ │ │ │ ├── text.tcl │ │ │ │ ├── tk.tcl │ │ │ │ ├── tkAppInit.c │ │ │ │ ├── tkfbox.tcl │ │ │ │ ├── unsupported.tcl │ │ │ │ └── xmfbox.tcl │ │ │ ├── source │ │ │ ├── SOURCE │ │ │ ├── avr-libc │ │ │ │ └── 1.6.4 │ │ │ │ │ ├── 30-avr-libc-1.6.4-dwarf2.patch │ │ │ │ │ ├── 31-avr-libc-1.6.4-builtins.patch │ │ │ │ │ └── 40-avr-libc-1.6.4-fix-attiny13a-arch.patch │ │ │ ├── binutils │ │ │ │ └── 2.19 │ │ │ │ │ ├── 30-binutils-2.19-avr-size.patch │ │ │ │ │ ├── 31-binutils-2.19-avr-coff.patch │ │ │ │ │ ├── 32-binutils-2.19-new-sections.patch │ │ │ │ │ ├── 33-binutils-2.19-data-origin.patch │ │ │ │ │ ├── 40-binutils-2.19-wrong-arch.patch │ │ │ │ │ ├── 50-binutils-2.19-xmega.patch │ │ │ │ │ ├── 51-binutils-2.19-xmega2.patch │ │ │ │ │ └── 52-binutils-2.19-atmega32u6.patch │ │ │ ├── gcc │ │ │ │ └── 4.3.2 │ │ │ │ │ ├── 20-gcc-4.3.2-libiberty-Makefile.in.patch │ │ │ │ │ ├── 21-gcc-4.3.2-disable-libssp.patch │ │ │ │ │ ├── 23-gcc-4.3.2-ada-Makefile.patch │ │ │ │ │ ├── 40-gcc-4.3.2-bug-10768-by-adacore.patch │ │ │ │ │ ├── 41-gcc-4.3.2-bug-11259_v3.patch │ │ │ │ │ ├── 42-gcc-4.3.2-bug-spill-v4.patch │ │ │ │ │ ├── 43-gcc-4.3.2-bug-35013.patch │ │ │ │ │ ├── 44-gcc-4.3.2-libgcc16.patch │ │ │ │ │ ├── 45-gcc-4.3.2-bug-33009.patch │ │ │ │ │ ├── 50-gcc-4.3.2-mega256.patch │ │ │ │ │ ├── 51-gcc-4.3.2-mega256-additional.patch │ │ │ │ │ ├── 52-gcc-4.3.2-xmega-v9.patch │ │ │ │ │ ├── 53-gcc-4.3.2-xmega2.patch │ │ │ │ │ ├── 54-gcc-4.3.2-atmega32m1.patch │ │ │ │ │ ├── 55-gcc-4.3.2-atmega32c1.patch │ │ │ │ │ ├── 56-gcc-4.3.2-atmega32u4.patch │ │ │ │ │ ├── 57-gcc-4.3.2-attiny167.patch │ │ │ │ │ ├── 58-gcc-4.3.2-remove-atmega32hvb.patch │ │ │ │ │ ├── 59-gcc-4.3.2-attiny13a.patch │ │ │ │ │ ├── 60-gcc-4.3.2-atmega32u6.patch │ │ │ │ │ ├── 61-gcc-4.3.2-osmain.patch │ │ │ │ │ ├── 70-gcc-4.3.2-ada-mlib.patch │ │ │ │ │ ├── 71-gcc-4.3.2-ada-freestanding.patch │ │ │ │ │ ├── 72-gcc-4.3.2-ada-timebase.patch │ │ │ │ │ ├── 73-gcc-4.3.2-ada-gnat1_print_path.patch │ │ │ │ │ ├── 74-gcc-4.3.2-ada-optim_static_addr.patch │ │ │ │ │ └── 75-gcc-4.3.2-builtins_v6.patch │ │ │ ├── insight │ │ │ │ └── 6.8 │ │ │ │ │ └── 50-gdb-6.8-mega256.patch │ │ │ └── mingw │ │ │ │ └── 5.1.3 │ │ │ │ └── mingw-vista.patch │ │ │ └── utils │ │ │ ├── bin │ │ │ ├── ansi2knr.exe │ │ │ ├── basename.exe │ │ │ ├── bc.exe │ │ │ ├── bison.exe │ │ │ ├── bison.hairy │ │ │ ├── bison.simple │ │ │ ├── bunzip2.exe │ │ │ ├── bzcat.exe │ │ │ ├── bzip2.exe │ │ │ ├── cat.exe │ │ │ ├── chgrp.exe │ │ │ ├── chmod.exe │ │ │ ├── chown.exe │ │ │ ├── cksum.exe │ │ │ ├── cmp.exe │ │ │ ├── comm.exe │ │ │ ├── compress.exe │ │ │ ├── cp.exe │ │ │ ├── csplit.exe │ │ │ ├── cut.exe │ │ │ ├── date.exe │ │ │ ├── dc.exe │ │ │ ├── dd.exe │ │ │ ├── df.exe │ │ │ ├── diff.exe │ │ │ ├── diff3.exe │ │ │ ├── dircolors.exe │ │ │ ├── dirname.exe │ │ │ ├── du.exe │ │ │ ├── echo.exe │ │ │ ├── egrep.exe │ │ │ ├── env.exe │ │ │ ├── expand.exe │ │ │ ├── expr.exe │ │ │ ├── factor.exe │ │ │ ├── false.exe │ │ │ ├── fgrep.exe │ │ │ ├── find.exe │ │ │ ├── flex.exe │ │ │ ├── flex.lib │ │ │ ├── fmt.exe │ │ │ ├── fold.exe │ │ │ ├── fromdos.exe │ │ │ ├── fsplit.exe │ │ │ ├── gawk.exe │ │ │ ├── gclip.exe │ │ │ ├── gplay.exe │ │ │ ├── grep.exe │ │ │ ├── gsar.exe │ │ │ ├── gunzip.exe │ │ │ ├── gzip.exe │ │ │ ├── head.exe │ │ │ ├── id.exe │ │ │ ├── indent.exe │ │ │ ├── info.exe │ │ │ ├── infokey.exe │ │ │ ├── install-info.exe │ │ │ ├── install.exe │ │ │ ├── join.exe │ │ │ ├── jwhois.exe │ │ │ ├── less.exe │ │ │ ├── ln.exe │ │ │ ├── logname.exe │ │ │ ├── ls.exe │ │ │ ├── m4.exe │ │ │ ├── make.exe │ │ │ ├── make.exe.old │ │ │ ├── makeinfo.exe │ │ │ ├── makemsg.exe │ │ │ ├── man.exe │ │ │ ├── md5sum.exe │ │ │ ├── mkdir.exe │ │ │ ├── mkfifo.exe │ │ │ ├── mknod.exe │ │ │ ├── mount.exe │ │ │ ├── msys-1.0.dll │ │ │ ├── msys-1.0.dll.old │ │ │ ├── mv.exe │ │ │ ├── mvdir.exe │ │ │ ├── nl.exe │ │ │ ├── od.exe │ │ │ ├── paste.exe │ │ │ ├── patch.exe │ │ │ ├── pathchk.exe │ │ │ ├── pclip.exe │ │ │ ├── pr.exe │ │ │ ├── printenv.exe │ │ │ ├── printf.exe │ │ │ ├── ps.exe │ │ │ ├── pwd.exe │ │ │ ├── rm.exe │ │ │ ├── rman.exe │ │ │ ├── rmdir.exe │ │ │ ├── sdiff.exe │ │ │ ├── sed.exe │ │ │ ├── seq.exe │ │ │ ├── sh.exe │ │ │ ├── shar.exe │ │ │ ├── sleep.exe │ │ │ ├── sort.exe │ │ │ ├── split.exe │ │ │ ├── stego.exe │ │ │ ├── su.exe │ │ │ ├── sum.exe │ │ │ ├── sync.exe │ │ │ ├── tac.exe │ │ │ ├── tail.exe │ │ │ ├── tar.exe │ │ │ ├── tee.exe │ │ │ ├── test.exe │ │ │ ├── texindex.exe │ │ │ ├── todos.exe │ │ │ ├── touch.exe │ │ │ ├── tr.exe │ │ │ ├── true.exe │ │ │ ├── type.exe │ │ │ ├── uname.exe │ │ │ ├── unexpand.exe │ │ │ ├── uniq.exe │ │ │ ├── unshar.exe │ │ │ ├── uudecode.exe │ │ │ ├── uuencode.exe │ │ │ ├── wc.exe │ │ │ ├── wget.exe │ │ │ ├── wget.hlp │ │ │ ├── which.exe │ │ │ ├── whoami.exe │ │ │ ├── xargs.exe │ │ │ ├── yes.exe │ │ │ └── zcat.exe │ │ │ └── libusb │ │ │ └── bin │ │ │ ├── avrisp2.cat │ │ │ ├── avrisp2.inf │ │ │ ├── avrisp2_x64.cat │ │ │ ├── inf-wizard.exe │ │ │ ├── install-filter.exe │ │ │ ├── jtagice2.cat │ │ │ ├── jtagice2.inf │ │ │ ├── jtagice2_x64.cat │ │ │ ├── libusb0.dll │ │ │ ├── libusb0.sys │ │ │ ├── libusb0_x64.dll │ │ │ ├── libusb0_x64.sys │ │ │ ├── testlibusb-win.exe │ │ │ └── testlibusb.exe │ └── libraries │ │ ├── Adxl345 │ │ ├── ADXL345.cpp │ │ ├── ADXL345.h │ │ └── License.txt │ │ ├── Arduino2Weibo │ │ ├── Arduino2Weibo.cpp │ │ ├── Arduino2Weibo.h │ │ ├── examples │ │ │ ├── RemoteControl │ │ │ │ └── RemoteControl.ino │ │ │ └── SimplePost │ │ │ │ └── SimplePost.ino │ │ └── keywords.txt │ │ ├── AudioAnalyzer │ │ ├── AudioAnalyzer.cpp │ │ ├── AudioAnalyzer.h │ │ └── examples │ │ │ └── AudioAnalyzerExp │ │ │ └── AudioAnalyzerExp.pde │ │ ├── CapacitiveSensor │ │ ├── CapacitiveSensor.cpp │ │ ├── CapacitiveSensor.h │ │ ├── README.md │ │ ├── examples │ │ │ └── CapacitiveSensorSketch │ │ │ │ └── CapacitiveSensorSketch.pde │ │ └── keywords.txt │ │ ├── DotMatrixTest │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ ├── it.baeyens.core.prefs │ │ │ └── org.eclipse.cdt.codan.core.prefs │ │ ├── DotMatrixTest.cpp │ │ ├── DotMatrixTest.h │ │ ├── README.md │ │ ├── common │ │ │ ├── bit_op.h │ │ │ ├── byte-reverse.c │ │ │ ├── byte-reverse.h │ │ │ └── pin_op.h │ │ ├── ctl_3d8 │ │ │ ├── ControllerAnimationBasic │ │ │ │ └── ControllerAnimationBasic.ino │ │ │ ├── ctl_3d8.cpp │ │ │ └── ctl_3d8.h │ │ ├── ctldm_3d8 │ │ │ ├── ctldm_3d8.cpp │ │ │ ├── ctldm_3d8.h │ │ │ └── examples │ │ │ │ ├── ControllerAnimationAdvanced │ │ │ │ └── ControllerAnimationAdvanced.ino │ │ │ │ └── ControllerAnimationMaster │ │ │ │ └── ControllerAnimationMaster.ino │ │ ├── dotmatrix │ │ │ ├── dot-font.cpp │ │ │ ├── dot-font.h │ │ │ ├── dot-matrix-3d8.cpp │ │ │ ├── dot-matrix-3d8.h │ │ │ ├── dot-matrix.cpp │ │ │ ├── dot-matrix.h │ │ │ ├── dot-pattern.cpp │ │ │ ├── dot-pattern.h │ │ │ ├── dot-string.cpp │ │ │ └── dot-string.h │ │ ├── drv_74hc138 │ │ │ ├── drv_74hc138.cpp │ │ │ └── drv_74hc138.h │ │ ├── drv_74hc595 │ │ │ ├── drv_74hc595.cpp │ │ │ └── drv_74hc595.h │ │ ├── drv_74hc595_spi │ │ │ ├── drv_74hc595_spi.cpp │ │ │ ├── drv_74hc595_spi.h │ │ │ └── examples │ │ │ │ └── LedBeam │ │ │ │ └── LedBeam.ino │ │ ├── drv_hd44780 │ │ │ ├── drv_hd44780.cpp │ │ │ ├── drv_hd44780.h │ │ │ ├── drv_hd44780_basic.cpp │ │ │ ├── drv_hd44780_basic.h │ │ │ └── examples │ │ │ │ └── HelloWorld │ │ │ │ └── HD44780_Basic.ino │ │ ├── drv_hd44780_i2c │ │ │ ├── drv_hd44780_i2c.cpp │ │ │ ├── drv_hd44780_i2c.h │ │ │ └── examples │ │ │ │ └── HelloWorld │ │ │ │ └── HelloWorld.ino │ │ ├── drv_pcd8544 │ │ │ ├── drv_pcd8544.cpp │ │ │ └── drv_pcd8544.h │ │ ├── drv_st7920 │ │ │ ├── drv_st7920.cpp │ │ │ └── drv_st7920.h │ │ ├── drv_tb62726 │ │ │ ├── drv_tb62726.cpp │ │ │ └── drv_tb62726.h │ │ ├── drv_tb62726_spi │ │ │ ├── drv_tb62726_spi.cpp │ │ │ └── drv_tb62726_spi.h │ │ ├── drvdm_3d8 │ │ │ ├── drvdm_3d8.cpp │ │ │ ├── drvdm_3d8.h │ │ │ └── examples │ │ │ │ ├── AnimationAdvanced │ │ │ │ └── AnimationAdvanced.ino │ │ │ │ └── AnimationBasic │ │ │ │ └── AnimationBasic.ino │ │ ├── drvdm_3d8_spi │ │ │ ├── drvdm_3d8_spi.cpp │ │ │ ├── drvdm_3d8_spi.h │ │ │ └── examples │ │ │ │ └── AnimationMasterSpi │ │ │ │ └── AnimationMasterSpi.ino │ │ ├── drvdm_74hc595x74hc138 │ │ │ ├── drvdm_74hc595x74hc138.cpp │ │ │ ├── drvdm_74hc595x74hc138.h │ │ │ └── examples │ │ │ │ ├── SerialTyping24X7 │ │ │ │ └── SerialTyping24X7.ino │ │ │ │ └── SerialTyping32X8 │ │ │ │ └── SerialTyping32X8.ino │ │ ├── drvdm_hd44780 │ │ │ ├── drvdm_hd44780.cpp │ │ │ ├── drvdm_hd44780.h │ │ │ └── examples │ │ │ │ ├── Counter │ │ │ │ └── Counter.ino │ │ │ │ └── OBDScreen │ │ │ │ └── OBDScreen.ino │ │ ├── drvdm_ld1608 │ │ │ ├── drvdm_ld1608.cpp │ │ │ ├── drvdm_ld1608.h │ │ │ └── examples │ │ │ │ └── SimpleTest │ │ │ │ └── SimpleTest.ino │ │ ├── drvdm_ld4812 │ │ │ ├── drvdm_ld4812.cpp │ │ │ ├── drvdm_ld4812.h │ │ │ └── examples │ │ │ │ └── SimpleExample │ │ │ │ └── SimpleExample.ino │ │ ├── drvdm_pcd8544 │ │ │ ├── drvdm_pcd8544.cpp │ │ │ ├── drvdm_pcd8544.h │ │ │ └── examples │ │ │ │ ├── HelloWorld │ │ │ │ └── HelloWorld.ino │ │ │ │ └── PatternExample │ │ │ │ └── PatternExample.ino │ │ ├── drvdm_st7920 │ │ │ ├── drvdm_st7920.cpp │ │ │ ├── drvdm_st7920.h │ │ │ └── examples │ │ │ │ ├── FontDisplay │ │ │ │ └── FontDisplay.ino │ │ │ │ └── SerialDisplay │ │ │ │ └── SerialDisplay.ino │ │ ├── drvdm_tb62726x74hc138 │ │ │ ├── drvdm_tb62726x74hc138.cpp │ │ │ └── drvdm_tb62726x74hc138.h │ │ ├── drvdm_tb62726x74hc138_spi │ │ │ ├── drvdm_tb62726x74hc138_spi.cpp │ │ │ └── drvdm_tb62726x74hc138_spi.h │ │ └── font │ │ │ ├── hpattern.c │ │ │ ├── hpattern.h │ │ │ ├── vfont_5x3.c │ │ │ ├── vfont_5x3.h │ │ │ ├── vfont_6x3.c │ │ │ ├── vfont_6x3.h │ │ │ ├── vfont_7x3.c │ │ │ ├── vfont_7x3.h │ │ │ ├── vfont_7x4.c │ │ │ ├── vfont_7x4.h │ │ │ ├── vfont_7x5.c │ │ │ ├── vfont_7x5.h │ │ │ ├── vfont_8x3.c │ │ │ └── vfont_8x3.h │ │ ├── EEPROM │ │ ├── EEPROM.cpp │ │ ├── EEPROM.h │ │ ├── examples │ │ │ ├── eeprom_clear │ │ │ │ └── eeprom_clear.ino │ │ │ ├── eeprom_read │ │ │ │ └── eeprom_read.ino │ │ │ └── eeprom_write │ │ │ │ └── eeprom_write.ino │ │ └── keywords.txt │ │ ├── Esplora │ │ ├── Esplora.cpp │ │ ├── Esplora.h │ │ ├── examples │ │ │ ├── Beginners │ │ │ │ ├── EsploraAccelerometer │ │ │ │ │ └── EsploraAccelerometer.ino │ │ │ │ ├── EsploraBlink │ │ │ │ │ └── EsploraBlink.ino │ │ │ │ ├── EsploraJoystickMouse │ │ │ │ │ └── EsploraJoystickMouse.ino │ │ │ │ ├── EsploraLedShow │ │ │ │ │ └── EsploraLedShow.ino │ │ │ │ ├── EsploraLedShow2 │ │ │ │ │ └── EsploraLedShow2.ino │ │ │ │ ├── EsploraLightCalibrator │ │ │ │ │ └── EsploraLightCalibrator.ino │ │ │ │ ├── EsploraMusic │ │ │ │ │ └── EsploraMusic.ino │ │ │ │ ├── EsploraSoundSensor │ │ │ │ │ └── EsploraSoundSensor.ino │ │ │ │ └── EsploraTemperatureSensor │ │ │ │ │ └── EsploraTemperatureSensor.ino │ │ │ ├── EsploraKart │ │ │ │ └── EsploraKart.ino │ │ │ ├── EsploraLedShow │ │ │ │ └── EsploraLedShow.ino │ │ │ ├── EsploraLedShow2 │ │ │ │ └── EsploraLedShow2.ino │ │ │ ├── EsploraMusic │ │ │ │ └── EsploraMusic.ino │ │ │ ├── EsploraRemote │ │ │ │ └── EsploraRemote.ino │ │ │ ├── EsploraTable │ │ │ │ └── EsploraTable.ino │ │ │ └── Experts │ │ │ │ ├── EsploraKart │ │ │ │ └── EsploraKart.ino │ │ │ │ ├── EsploraPong │ │ │ │ └── EsploraPong.ino │ │ │ │ ├── EsploraRemote │ │ │ │ └── EsploraRemote.ino │ │ │ │ └── EsploraTable │ │ │ │ └── EsploraTable.ino │ │ └── keywords.txt │ │ ├── Ethernet │ │ ├── Dhcp.cpp │ │ ├── Dhcp.h │ │ ├── Dns.cpp │ │ ├── Dns.h │ │ ├── Ethernet.cpp │ │ ├── Ethernet.h │ │ ├── Ethernet.pro │ │ ├── Ethernet.pro.user │ │ ├── EthernetClient.cpp │ │ ├── EthernetClient.h │ │ ├── EthernetServer.cpp │ │ ├── EthernetServer.h │ │ ├── EthernetUdp.cpp │ │ ├── EthernetUdp.h │ │ ├── examples │ │ │ ├── BarometricPressureWebServer │ │ │ │ └── BarometricPressureWebServer.ino │ │ │ ├── ChatServer │ │ │ │ └── ChatServer.ino │ │ │ ├── DhcpAddressPrinter │ │ │ │ └── DhcpAddressPrinter.ino │ │ │ ├── DhcpChatServer │ │ │ │ └── DhcpChatServer.ino │ │ │ ├── DnsWebClient │ │ │ │ └── DnsWebClient.ino │ │ │ ├── PachubeClient │ │ │ │ └── PachubeClient.ino │ │ │ ├── PachubeClientString │ │ │ │ └── PachubeClientString.ino │ │ │ ├── TelnetClient │ │ │ │ └── TelnetClient.ino │ │ │ ├── TwitterClient │ │ │ │ └── TwitterClient.ino │ │ │ ├── UDPSendReceiveString │ │ │ │ └── UDPSendReceiveString.ino │ │ │ ├── UdpNtpClient │ │ │ │ └── UdpNtpClient.ino │ │ │ ├── WebClient │ │ │ │ └── WebClient.ino │ │ │ ├── WebClientRepeating │ │ │ │ └── WebClientRepeating.ino │ │ │ └── WebServer │ │ │ │ └── WebServer.ino │ │ ├── keywords.txt │ │ ├── util.h │ │ └── utility │ │ │ ├── socket.cpp │ │ │ ├── socket.h │ │ │ ├── w5100.cpp │ │ │ └── w5100.h │ │ ├── Firmata │ │ ├── Boards.h │ │ ├── Firmata.cpp │ │ ├── Firmata.h │ │ ├── LICENSE.txt │ │ ├── TODO.txt │ │ ├── examples │ │ │ ├── AllInputsFirmata │ │ │ │ └── AllInputsFirmata.ino │ │ │ ├── AnalogFirmata │ │ │ │ └── AnalogFirmata.ino │ │ │ ├── EchoString │ │ │ │ └── EchoString.ino │ │ │ ├── I2CFirmata │ │ │ │ └── I2CFirmata.ino │ │ │ ├── OldStandardFirmata │ │ │ │ ├── LICENSE.txt │ │ │ │ └── OldStandardFirmata.ino │ │ │ ├── ServoFirmata │ │ │ │ └── ServoFirmata.ino │ │ │ ├── SimpleAnalogFirmata │ │ │ │ └── SimpleAnalogFirmata.ino │ │ │ ├── SimpleDigitalFirmata │ │ │ │ └── SimpleDigitalFirmata.ino │ │ │ └── StandardFirmata │ │ │ │ ├── LICENSE.txt │ │ │ │ └── StandardFirmata.ino │ │ └── keywords.txt │ │ ├── FreeSixIMU │ │ ├── CommunicationUtils.cpp │ │ ├── CommunicationUtils.h │ │ ├── DebugUtils.h │ │ ├── FIMU_ADXL345.cpp │ │ ├── FIMU_ADXL345.h │ │ ├── FIMU_ITG3200.cpp │ │ ├── FIMU_ITG3200.h │ │ ├── FreeSixIMU.cpp │ │ ├── FreeSixIMU.h │ │ ├── LICENSE.txt │ │ └── examples │ │ │ ├── FreeSix_cube │ │ │ └── FreeSix_cube.ino │ │ │ └── sixDOF_Example │ │ │ └── sixDOF_Example.ino │ │ ├── FrequencyTimer2 │ │ ├── FrequencyTimer2.cpp │ │ ├── FrequencyTimer2.h │ │ ├── examples │ │ │ └── Test │ │ │ │ └── Test.pde │ │ └── keywords.txt │ │ ├── GSM │ │ ├── GSM.h │ │ ├── GSM3CircularBuffer.cpp │ │ ├── GSM3CircularBuffer.h │ │ ├── GSM3MobileAccessProvider.cpp │ │ ├── GSM3MobileAccessProvider.h │ │ ├── GSM3MobileCellManagement.cpp │ │ ├── GSM3MobileCellManagement.h │ │ ├── GSM3MobileClientProvider.cpp │ │ ├── GSM3MobileClientProvider.h │ │ ├── GSM3MobileClientService.cpp │ │ ├── GSM3MobileClientService.h │ │ ├── GSM3MobileDataNetworkProvider.cpp │ │ ├── GSM3MobileDataNetworkProvider.h │ │ ├── GSM3MobileMockupProvider.cpp │ │ ├── GSM3MobileMockupProvider.h │ │ ├── GSM3MobileNetworkProvider.cpp │ │ ├── GSM3MobileNetworkProvider.h │ │ ├── GSM3MobileNetworkRegistry.cpp │ │ ├── GSM3MobileNetworkRegistry.h │ │ ├── GSM3MobileSMSProvider.cpp │ │ ├── GSM3MobileSMSProvider.h │ │ ├── GSM3MobileServerProvider.cpp │ │ ├── GSM3MobileServerProvider.h │ │ ├── GSM3MobileServerService.cpp │ │ ├── GSM3MobileServerService.h │ │ ├── GSM3MobileVoiceProvider.cpp │ │ ├── GSM3MobileVoiceProvider.h │ │ ├── GSM3SMSService.cpp │ │ ├── GSM3SMSService.h │ │ ├── GSM3ShieldV1.cpp │ │ ├── GSM3ShieldV1.h │ │ ├── GSM3ShieldV1AccessProvider.cpp │ │ ├── GSM3ShieldV1AccessProvider.h │ │ ├── GSM3ShieldV1BandManagement.cpp │ │ ├── GSM3ShieldV1BandManagement.h │ │ ├── GSM3ShieldV1BaseProvider.cpp │ │ ├── GSM3ShieldV1BaseProvider.h │ │ ├── GSM3ShieldV1CellManagement.cpp │ │ ├── GSM3ShieldV1CellManagement.h │ │ ├── GSM3ShieldV1ClientProvider.cpp │ │ ├── GSM3ShieldV1ClientProvider.h │ │ ├── GSM3ShieldV1DataNetworkProvider.cpp │ │ ├── GSM3ShieldV1DataNetworkProvider.h │ │ ├── GSM3ShieldV1DirectModemProvider.cpp │ │ ├── GSM3ShieldV1DirectModemProvider.h │ │ ├── GSM3ShieldV1ModemCore.cpp │ │ ├── GSM3ShieldV1ModemCore.h │ │ ├── GSM3ShieldV1ModemVerification.cpp │ │ ├── GSM3ShieldV1ModemVerification.h │ │ ├── GSM3ShieldV1MultiClientProvider.cpp │ │ ├── GSM3ShieldV1MultiClientProvider.h │ │ ├── GSM3ShieldV1MultiServerProvider.cpp │ │ ├── GSM3ShieldV1MultiServerProvider.h │ │ ├── GSM3ShieldV1PinManagement.cpp │ │ ├── GSM3ShieldV1PinManagement.h │ │ ├── GSM3ShieldV1SMSProvider.cpp │ │ ├── GSM3ShieldV1SMSProvider.h │ │ ├── GSM3ShieldV1ScanNetworks.cpp │ │ ├── GSM3ShieldV1ScanNetworks.h │ │ ├── GSM3ShieldV1ServerProvider.cpp │ │ ├── GSM3ShieldV1ServerProvider.h │ │ ├── GSM3ShieldV1VoiceProvider.cpp │ │ ├── GSM3ShieldV1VoiceProvider.h │ │ ├── GSM3SoftSerial.cpp │ │ ├── GSM3SoftSerial.h │ │ ├── GSM3VoiceCallService.cpp │ │ ├── GSM3VoiceCallService.h │ │ ├── License.txt │ │ ├── examples │ │ │ ├── GSMPachubeClient │ │ │ │ └── GSMPachubeClient.ino │ │ │ ├── GSMPachubeClientString │ │ │ │ └── GSMPachubeClientString.ino │ │ │ ├── GsmTwitterClient │ │ │ │ └── GsmTwitterClient.ino │ │ │ ├── GsmWebClient │ │ │ │ └── GsmWebClient.ino │ │ │ ├── GsmWebServer │ │ │ │ └── GsmWebServer.ino │ │ │ ├── MakeVoiceCall │ │ │ │ └── MakeVoiceCall.ino │ │ │ ├── ReceiveSMS │ │ │ │ └── ReceiveSMS.ino │ │ │ ├── ReceiveVoiceCall │ │ │ │ └── ReceiveVoiceCall.ino │ │ │ ├── SendSMS │ │ │ │ └── SendSMS.ino │ │ │ └── Tools │ │ │ │ ├── BandManagement │ │ │ │ └── BandManagement.ino │ │ │ │ ├── GsmScanNetworks │ │ │ │ └── GsmScanNetworks.ino │ │ │ │ ├── PinManagement │ │ │ │ └── PinManagement.ino │ │ │ │ ├── TestGPRS │ │ │ │ └── TestGPRS.ino │ │ │ │ ├── TestModem │ │ │ │ └── TestModem.ino │ │ │ │ └── TestWebServer │ │ │ │ └── TestWebServer.ino │ │ └── keywords.txt │ │ ├── GSMSHIELD │ │ ├── GSM.cpp │ │ ├── GSM.h │ │ ├── HWSerial.cpp │ │ ├── HWSerial.h │ │ ├── LOG.cpp │ │ ├── LOG.h │ │ ├── README │ │ ├── SIM900.cpp │ │ ├── SIM900.h │ │ ├── Streaming.h │ │ ├── WideTextFinder.cpp │ │ ├── WideTextFinder.h │ │ ├── call.cpp │ │ ├── call.h │ │ ├── doc │ │ │ ├── Istructions.txt │ │ │ └── List.txt │ │ ├── examples │ │ │ ├── GSM_GPRSLibrary_AT │ │ │ │ └── GSM_GPRSLibrary_AT.ino │ │ │ ├── GSM_GPRSLibrary_Call │ │ │ │ └── GSM_GPRSLibrary_Call.ino │ │ │ ├── GSM_GPRSLibrary_Client │ │ │ │ └── GSM_GPRSLibrary_Client.ino │ │ │ ├── GSM_GPRSLibrary_GPS │ │ │ │ └── GSM_GPRSLibrary_GPS.ino │ │ │ ├── GSM_GPRSLibrary_SMS │ │ │ │ └── GSM_GPRSLibrary_SMS.ino │ │ │ └── GSM_GPRSLibrary_Server │ │ │ │ └── GSM_GPRSLibrary_Server.ino │ │ ├── gps.cpp │ │ ├── gps.h │ │ ├── inetGSM.cpp │ │ ├── inetGSM.h │ │ ├── sms.cpp │ │ └── sms.h │ │ ├── HMC5883L │ │ ├── HMC5883L.cpp │ │ ├── HMC5883L.h │ │ ├── HMC5883L_Example │ │ │ └── HMC5883L_Example.pde │ │ └── keywords.txt │ │ ├── IRremote │ │ ├── IRremote.cpp │ │ ├── IRremote.h │ │ ├── IRremoteInt.h │ │ ├── LICENSE.txt │ │ ├── examples │ │ │ ├── IRrecord │ │ │ │ └── IRrecord.pde │ │ │ ├── IRrecvDemo │ │ │ │ └── IRrecvDemo.pde │ │ │ ├── IRrecvDump │ │ │ │ └── IRrecvDump.pde │ │ │ ├── IRrelay │ │ │ │ └── IRrelay.pde │ │ │ ├── IRsendDemo │ │ │ │ └── IRsendDemo.pde │ │ │ └── IRtest │ │ │ │ └── IRtest.pde │ │ └── keywords.txt │ │ ├── LCD12864R │ │ ├── LCD12864R.cpp │ │ ├── LCD12864R.h │ │ └── examples │ │ │ ├── LCD12864_char │ │ │ └── LCD12864_char.pde │ │ │ └── LCD12864_picture │ │ │ └── LCD12864_picture.pde │ │ ├── LCD12864RSPI │ │ ├── LCD12864RSPI.cpp │ │ ├── LCD12864RSPI.h │ │ └── examples │ │ │ └── LCD12864_test │ │ │ ├── DFrobot_bmp.h │ │ │ ├── DFrobot_char.h │ │ │ └── LCD12864_test.pde │ │ ├── LCD4884 │ │ ├── LCD4884.cpp │ │ ├── LCD4884.h │ │ ├── examples │ │ │ └── LCD4884_menu │ │ │ │ ├── DFrobot_bmp.h │ │ │ │ ├── DFrobot_chinese.h │ │ │ │ └── LCD4884_menu.pde │ │ ├── font_6x8.h │ │ └── font_big.h │ │ ├── LiquidCrystal │ │ ├── LiquidCrystal.cpp │ │ ├── LiquidCrystal.h │ │ ├── examples │ │ │ ├── Autoscroll │ │ │ │ └── Autoscroll.ino │ │ │ ├── Blink │ │ │ │ └── Blink.ino │ │ │ ├── Cursor │ │ │ │ └── Cursor.ino │ │ │ ├── CustomCharacter │ │ │ │ └── CustomCharacter.ino │ │ │ ├── Display │ │ │ │ └── Display.ino │ │ │ ├── HelloWorld │ │ │ │ └── HelloWorld.ino │ │ │ ├── Scroll │ │ │ │ └── Scroll.ino │ │ │ ├── SerialDisplay │ │ │ │ └── SerialDisplay.ino │ │ │ ├── TextDirection │ │ │ │ └── TextDirection.ino │ │ │ └── setCursor │ │ │ │ └── setCursor.ino │ │ └── keywords.txt │ │ ├── LiquidCrystal_I2C │ │ ├── LiquidCrystal_I2C.cpp │ │ ├── LiquidCrystal_I2C.h │ │ ├── diff.txt │ │ ├── examples │ │ │ ├── CustomChars │ │ │ │ └── CustomChars.pde │ │ │ ├── HelloWorld │ │ │ │ └── HelloWorld.pde │ │ │ └── SerialDisplay │ │ │ │ └── SerialDisplay.pde │ │ └── keywords.txt │ │ ├── Metro │ │ ├── Metro.cpp │ │ ├── Metro.h │ │ ├── Metro.pdf │ │ ├── about.txt │ │ ├── examples │ │ │ ├── blinking │ │ │ │ └── blinking.pde │ │ │ ├── blinking_2_instances.zip │ │ │ ├── blinking_2_instances │ │ │ │ └── blinking_2_instances.pde │ │ │ └── serialInterval │ │ │ │ └── serialInterval.pde │ │ └── keywords.txt │ │ ├── OBD │ │ ├── OBD.cpp │ │ └── OBD.h │ │ ├── PID_v1 │ │ ├── Examples │ │ │ ├── PID_AdaptiveTunings │ │ │ │ └── PID_AdaptiveTunings.ino │ │ │ ├── PID_Basic │ │ │ │ └── PID_Basic.ino │ │ │ └── PID_RelayOutput │ │ │ │ └── PID_RelayOutput.ino │ │ ├── PID_v1.cpp │ │ ├── PID_v1.h │ │ └── keywords.txt │ │ ├── PS2Keyboard │ │ ├── PS2Keyboard.cpp │ │ ├── PS2Keyboard.h │ │ ├── examples │ │ │ ├── .DS_Store │ │ │ ├── Ctrl_Test │ │ │ │ └── Ctrl_Test.ino │ │ │ ├── International │ │ │ │ └── International.pde │ │ │ └── Simple_Test │ │ │ │ └── Simple_Test.pde │ │ └── keywords.txt │ │ ├── SD │ │ ├── File.cpp │ │ ├── README.txt │ │ ├── SD.cpp │ │ ├── SD.h │ │ ├── examples │ │ │ ├── CardInfo │ │ │ │ └── CardInfo.ino │ │ │ ├── Datalogger │ │ │ │ └── Datalogger.ino │ │ │ ├── DumpFile │ │ │ │ └── DumpFile.ino │ │ │ ├── Files │ │ │ │ └── Files.ino │ │ │ ├── ReadWrite │ │ │ │ └── ReadWrite.ino │ │ │ └── listfiles │ │ │ │ └── listfiles.ino │ │ ├── keywords.txt │ │ └── utility │ │ │ ├── FatStructs.h │ │ │ ├── Sd2Card.cpp │ │ │ ├── Sd2Card.h │ │ │ ├── Sd2PinMap.h │ │ │ ├── SdFat.h │ │ │ ├── SdFatUtil.h │ │ │ ├── SdFatmainpage.h │ │ │ ├── SdFile.cpp │ │ │ ├── SdInfo.h │ │ │ └── SdVolume.cpp │ │ ├── SPI │ │ ├── SPI.cpp │ │ ├── SPI.h │ │ ├── examples │ │ │ ├── BarometricPressureSensor │ │ │ │ ├── BarometricPressureSensor.ino │ │ │ │ └── BarometricPressureSensor │ │ │ │ │ └── BarometricPressureSensor.ino │ │ │ └── DigitalPotControl │ │ │ │ └── DigitalPotControl.ino │ │ └── keywords.txt │ │ ├── Servo │ │ ├── Servo.cpp │ │ ├── Servo.h │ │ ├── examples │ │ │ ├── Knob │ │ │ │ └── Knob.ino │ │ │ └── Sweep │ │ │ │ └── Sweep.ino │ │ └── keywords.txt │ │ ├── ShiftRegister595 │ │ ├── Examples │ │ │ └── ShiftRegisterCounter │ │ │ │ └── ShiftRegisterCounter.pde │ │ ├── ShiftRegister.h │ │ ├── ShiftRegister595.cpp │ │ ├── ShiftRegister595.h │ │ └── keywords.txt │ │ ├── SoftwareSerial │ │ ├── SoftwareSerial.cpp │ │ ├── SoftwareSerial.h │ │ ├── examples │ │ │ ├── SoftwareSerialExample │ │ │ │ └── SoftwareSerialExample.ino │ │ │ └── TwoPortReceive │ │ │ │ └── TwoPortReceive.ino │ │ └── keywords.txt │ │ ├── Stepper │ │ ├── Stepper.cpp │ │ ├── Stepper.h │ │ ├── examples │ │ │ ├── MotorKnob │ │ │ │ └── MotorKnob.ino │ │ │ ├── stepper_oneRevolution │ │ │ │ └── stepper_oneRevolution.ino │ │ │ ├── stepper_oneStepAtATime │ │ │ │ └── stepper_oneStepAtATime.ino │ │ │ └── stepper_speedControl │ │ │ │ └── stepper_speedControl.ino │ │ └── keywords.txt │ │ ├── TVout │ │ ├── TVout.cpp │ │ ├── TVout.h │ │ ├── TVoutPrint.cpp │ │ ├── examples │ │ │ ├── DemoNTSC │ │ │ │ ├── DemoNTSC.pde │ │ │ │ ├── TVOlogo.cpp │ │ │ │ ├── TVOlogo.h │ │ │ │ ├── schematic.cpp │ │ │ │ └── schematic.h │ │ │ ├── DemoPAL │ │ │ │ ├── DemoPAL.pde │ │ │ │ ├── TVOlogo.cpp │ │ │ │ ├── TVOlogo.h │ │ │ │ ├── schematic.cpp │ │ │ │ └── schematic.h │ │ │ └── NTSCserialTerm │ │ │ │ └── NTSCserialTerm.pde │ │ ├── font4x6.cpp │ │ ├── font4x6.h │ │ ├── font6x8.cpp │ │ ├── font6x8.h │ │ ├── font8x8.cpp │ │ ├── font8x8.h │ │ ├── font8x8ext.cpp │ │ ├── font8x8ext.h │ │ ├── fontALL.h │ │ ├── keywords.txt │ │ ├── spec │ │ │ ├── asm_macros.h │ │ │ ├── hardware_setup.h │ │ │ └── video_properties.h │ │ ├── version history.txt │ │ ├── video_gen.cpp │ │ └── video_gen.h │ │ ├── TinkerKit │ │ ├── .DS_Store │ │ ├── TinkerKit.cpp │ │ ├── TinkerKit.h │ │ ├── examples │ │ │ ├── .DS_Store │ │ │ ├── Accelerometer │ │ │ │ └── Accelerometer.ino │ │ │ ├── Blink │ │ │ │ └── Blink.ino │ │ │ ├── Button │ │ │ │ └── Button.ino │ │ │ ├── Empty │ │ │ │ └── Empty.ino │ │ │ ├── Gyro │ │ │ │ └── Gyro.ino │ │ │ ├── GyroAngle │ │ │ │ └── GyroAngle.ino │ │ │ ├── HallSensor │ │ │ │ └── HallSensor.ino │ │ │ ├── Joystick │ │ │ │ └── Joystick.ino │ │ │ ├── LightSensor │ │ │ │ └── LightSensor.ino │ │ │ ├── MosFet │ │ │ │ └── MosFet.ino │ │ │ ├── PhysicalPixel │ │ │ │ └── PhysicalPxiel.ino │ │ │ ├── Potentiometer │ │ │ │ └── Potentiometer.ino │ │ │ ├── Relay │ │ │ │ └── Relay.ino │ │ │ ├── Thermistor │ │ │ │ └── Thermistor.ino │ │ │ ├── ThreeConditionButton │ │ │ │ └── ThreeConditionButton.ino │ │ │ ├── TiltSensor │ │ │ │ └── TiltSensor.ino │ │ │ ├── TinkerKit.h │ │ │ ├── TouchSensor │ │ │ │ └── TouchSensor.ino │ │ │ └── toggle_Button │ │ │ │ └── toggle_Button.ino │ │ └── keywords.txt │ │ ├── URM37 │ │ ├── NewSoftSerial.cpp │ │ ├── NewSoftSerial.h │ │ ├── URMSerial.cpp │ │ ├── URMSerial.h │ │ └── examples │ │ │ ├── DistanceByHardwareSerial │ │ │ ├── DistanceByHardwareSerial.pde │ │ │ └── applet │ │ │ │ ├── DistanceByHardwareSerial.cpp │ │ │ │ ├── DistanceByHardwareSerial.cpp.eep │ │ │ │ ├── DistanceByHardwareSerial.cpp.elf │ │ │ │ └── DistanceByHardwareSerial.cpp.hex │ │ │ ├── MeasurementBySoftwareSerial │ │ │ ├── MeasurementBySoftwareSerial.pde │ │ │ └── applet │ │ │ │ ├── MeasurementBySoftwareSerial.cpp │ │ │ │ ├── MeasurementBySoftwareSerial.cpp.eep │ │ │ │ ├── MeasurementBySoftwareSerial.cpp.elf │ │ │ │ └── MeasurementBySoftwareSerial.cpp.hex │ │ │ └── ServoScan │ │ │ ├── ServoScan.pde │ │ │ └── applet │ │ │ ├── MeasurementBySoftwareSerial.cpp │ │ │ ├── MeasurementBySoftwareSerial.cpp.eep │ │ │ ├── MeasurementBySoftwareSerial.cpp.elf │ │ │ └── MeasurementBySoftwareSerial.cpp.hex │ │ ├── Voice │ │ ├── Voice.cpp │ │ ├── Voice.h │ │ ├── examples │ │ │ ├── Voice_led │ │ │ │ └── Voice_led.pde │ │ │ └── Voice_mp3 │ │ │ │ └── Voice_mp3.pde │ │ ├── keywords.txt │ │ └── utility │ │ │ └── PinMap.h │ │ ├── WiFi │ │ ├── WiFi.cpp │ │ ├── WiFi.h │ │ ├── WiFiClient.cpp │ │ ├── WiFiClient.h │ │ ├── WiFiServer.cpp │ │ ├── WiFiServer.h │ │ ├── examples │ │ │ ├── ConnectNoEncryption │ │ │ │ └── ConnectNoEncryption.ino │ │ │ ├── ConnectWithWEP │ │ │ │ └── ConnectWithWEP.ino │ │ │ ├── ConnectWithWPA │ │ │ │ └── ConnectWithWPA.ino │ │ │ ├── ScanNetworks │ │ │ │ └── ScanNetworks.ino │ │ │ ├── SimpleWebServerWiFi │ │ │ │ └── SimpleWebServerWiFi.ino │ │ │ ├── WifiChatServer │ │ │ │ └── WifiChatServer.ino │ │ │ ├── WifiPachubeClient │ │ │ │ └── WifiPachubeClient.ino │ │ │ ├── WifiPachubeClientString │ │ │ │ └── WifiPachubeClientString.ino │ │ │ ├── WifiTwitterClient │ │ │ │ └── WifiTwitterClient.ino │ │ │ ├── WifiWebClient │ │ │ │ └── WifiWebClient.ino │ │ │ ├── WifiWebClientRepeating │ │ │ │ └── WifiWebClientRepeating.ino │ │ │ └── WifiWebServer │ │ │ │ └── WifiWebServer.ino │ │ ├── keywords.txt │ │ └── utility │ │ │ ├── debug.h │ │ │ ├── server_drv.cpp │ │ │ ├── server_drv.h │ │ │ ├── socket.c │ │ │ ├── socket.h │ │ │ ├── spi_drv.cpp │ │ │ ├── spi_drv.h │ │ │ ├── wifi_drv.cpp │ │ │ ├── wifi_drv.h │ │ │ ├── wifi_spi.h │ │ │ ├── wl_definitions.h │ │ │ └── wl_types.h │ │ ├── Wire │ │ ├── Wire.cpp │ │ ├── Wire.h │ │ ├── examples │ │ │ ├── SFRRanger_reader │ │ │ │ └── SFRRanger_reader.ino │ │ │ ├── digital_potentiometer │ │ │ │ └── digital_potentiometer.ino │ │ │ ├── master_reader │ │ │ │ └── master_reader.ino │ │ │ ├── master_writer │ │ │ │ └── master_writer.ino │ │ │ ├── slave_receiver │ │ │ │ └── slave_receiver.ino │ │ │ └── slave_sender │ │ │ │ └── slave_sender.ino │ │ ├── keywords.txt │ │ └── utility │ │ │ ├── twi.c │ │ │ └── twi.h │ │ ├── pollserial │ │ ├── pollserial.cpp │ │ └── pollserial.h │ │ └── rgb_matrix │ │ ├── examples │ │ ├── matrix_1X1 │ │ │ └── matrix_1X1.pde │ │ ├── matrix_1X5 │ │ │ └── matrix_1X5.pde │ │ ├── matrix_2X2 │ │ │ └── matrix_2X2.pde │ │ └── matrix_4X2 │ │ │ └── matrix_4X2.pde │ │ ├── rgb_matrix.cpp │ │ └── rgb_matrix.h │ ├── ArduinoUploader.exe │ ├── QtCore4.dll │ ├── QtGui4.dll │ ├── QtSql4.dll │ ├── QtXml4.dll │ ├── Temp │ ├── IRremote.cpp.d │ ├── Metro.cpp.d │ ├── Servo.cpp.d │ ├── code.cpp │ ├── code.cpp.d │ ├── code.cpp.eep │ ├── code.cpp.elf │ └── code.cpp.hex │ ├── libLog4Qt.dll │ ├── libgcc_s_dw2-1.dll │ ├── libstdc++-6.dll │ └── mingwm10.dll ├── src ├── AffirmForm.cpp ├── AffirmForm.h ├── AllBlocksForm.cpp ├── AllBlocksForm.h ├── Animation.cpp ├── Animation.h ├── BlockMenuWidget.cpp ├── BlockMenuWidget.h ├── CallUpdateProgram.cpp ├── CallUpdateProgram.h ├── Common.h ├── CurveProgressionWidget.cpp ├── CurveProgressionWidget.h ├── CustomFont.cpp ├── CustomFont.h ├── FileInforForm.cpp ├── FileInforForm.h ├── FunctionArea.cpp ├── FunctionArea.h ├── FunctionAreaWidget.cpp ├── FunctionAreaWidget.h ├── GraphicFramework │ ├── Item │ │ ├── BehaviourItem.cpp │ │ ├── BehaviourItem.h │ │ ├── FlowLine.cpp │ │ ├── FlowLine.h │ │ ├── GraphicsItemBase.cpp │ │ ├── GraphicsItemBase.h │ │ ├── GraphicsItermGroup.cpp │ │ ├── GraphicsItermGroup.h │ │ ├── LockIconItem.cpp │ │ ├── LockIconItem.h │ │ ├── ParameterItem.cpp │ │ ├── ParameterItem.h │ │ ├── RootItem.cpp │ │ ├── RootItem.h │ │ ├── StartItem.cpp │ │ └── StartItem.h │ ├── Scene │ │ ├── EditScene.cpp │ │ └── EditScene.h │ └── View │ │ ├── OperationsManagement.cpp │ │ └── OperationsManagement.h ├── IntroduceForm.cpp ├── IntroduceForm.h ├── IntroduceFromRight.cpp ├── IntroduceFromRight.h ├── Label.cpp ├── Label.h ├── ListWidget.cpp ├── ListWidget.h ├── ListWidgetAdvanceBlock.cpp ├── ListWidgetAdvanceBlock.h ├── ListWidgetItem.cpp ├── ListWidgetItem.h ├── ListWidgetItemWidget_Component.cpp ├── ListWidgetItemWidget_Component.h ├── ListWidgetItemWidget_Photo.cpp ├── ListWidgetItemWidget_Photo.h ├── ListWidgetItemWidget_UploadSetting.cpp ├── ListWidgetItemWidget_UploadSetting.h ├── LoginInforWidget.cpp ├── LoginInforWidget.h ├── MindKitForm.cpp ├── MindKitForm.h ├── MindKitPushButton.cpp ├── MindKitPushButton.h ├── Other │ └── Data │ │ ├── DataBaseCreateComponent.cpp │ │ ├── DataBaseCreateComponent.h │ │ ├── DataBaseHandle.cpp │ │ ├── DataBaseHandle.h │ │ ├── DataStruct.h │ │ ├── DatabaseEditComponent.cpp │ │ ├── DatabaseEditComponent.h │ │ ├── GetBlockData.cpp │ │ ├── GetBlockData.h │ │ ├── ResultsetBase.cpp │ │ └── ResultsetBase.h ├── Param.cpp ├── Param.h ├── Parameter_AnalogPin_Form.cpp ├── Parameter_AnalogPin_Form.h ├── Parameter_CurveProgression_Form.cpp ├── Parameter_CurveProgression_Form.h ├── Parameter_DigitalPin_Form.cpp ├── Parameter_DigitalPin_Form.h ├── Parameter_Integer_Form.cpp ├── Parameter_Integer_Form.h ├── Parameter_LED8x8_Form.cpp ├── Parameter_LED8x8_Form.h ├── Parameter_String_Form.cpp ├── Parameter_String_Form.h ├── Parameter_Time_Form.cpp ├── Parameter_Time_Form.h ├── Parameter_operator_Form.cpp ├── Parameter_operator_Form.h ├── PushButtonBase.cpp ├── PushButtonBase.h ├── PushButtonBlock.cpp ├── PushButtonBlock.h ├── PushButtonDone.cpp ├── PushButtonDone.h ├── PushButtonMindKit.cpp ├── PushButtonMindKit.h ├── SerialDataThread.cpp ├── SerialDataThread.h ├── SerialPortToolForm.cpp ├── SerialPortToolForm.h ├── SerialSettingWidget.cpp ├── SerialSettingWidget.h ├── Sleep.cpp ├── Sleep.h ├── UploadParameterWidget.cpp ├── UploadParameterWidget.h ├── UploadSettingForm.cpp ├── UploadSettingForm.h ├── UploadWaitForm.cpp ├── UploadWaitForm.h ├── Uploader │ ├── ArduinoUploader.cpp │ ├── ArduinoUploader.h │ ├── DFRobotUploader.cpp │ ├── DFRobotUploader.h │ ├── ToolBase.cpp │ ├── ToolBase.h │ ├── ToolFactory.cpp │ ├── ToolsFactory.h │ ├── Translate.cpp │ ├── Translate.h │ ├── Uploader.cpp │ └── Uploader.h ├── WidgetBackgroundRight.cpp ├── WidgetBackgroundRight.h ├── WidgetForListWidgetBegin.cpp ├── WidgetForListWidgetBegin.h ├── WidgetMain.cpp ├── WidgetMain.h ├── WidgetShowScene.cpp ├── WidgetShowScene.h ├── dptr.h └── main.cpp ├── ui ├── AffirmForm.ui ├── AllBlocksForm.ui ├── BlockMenuWidget.ui ├── FileInforForm.ui ├── FunctionArea.ui ├── FunctionAreaWidget.ui ├── IntroduceForm.ui ├── ListWidgetItemWidget_Component.ui ├── ListWidgetItemWidget_Photo.ui ├── ListWidgetItemWidget_UploadSetting.ui ├── LoginInforWidget.ui ├── MindKitForm.ui ├── Parameter_AnalogPin_Form.ui ├── Parameter_CurveProgression_Form.ui ├── Parameter_DigitalPin_Form.ui ├── Parameter_Integer_Form.ui ├── Parameter_LED8x8_Form.ui ├── Parameter_String_Form.ui ├── Parameter_Time_Form.ui ├── Parameter_operator_Form.ui ├── SerialPortToolForm.ui ├── SerialSettingWidget.ui ├── UploadParameterWidget.ui ├── UploadSettingForm.ui ├── UploadWaitForm.ui ├── WidgetForListWidgetBegin.ui └── WidgetMain.ui └── 大略文档.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /Mind+.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/Mind+.pro -------------------------------------------------------------------------------- /Mind+.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/Mind+.pro.user -------------------------------------------------------------------------------- /Mind+.pro.user.2.5pre1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/Mind+.pro.user.2.5pre1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/README.md -------------------------------------------------------------------------------- /extra/BBList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/extra/BBList.csv -------------------------------------------------------------------------------- /extra/Linkage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/extra/Linkage.csv -------------------------------------------------------------------------------- /extra/Parameter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/extra/Parameter.csv -------------------------------------------------------------------------------- /extra/ico.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/extra/ico.rc -------------------------------------------------------------------------------- /object_script.mp.Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/object_script.mp.Release -------------------------------------------------------------------------------- /resource/Blocks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/.DS_Store -------------------------------------------------------------------------------- /resource/Blocks/Buffer.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Buffer.mpb -------------------------------------------------------------------------------- /resource/Blocks/Convert/Map.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Convert/Map.mpb -------------------------------------------------------------------------------- /resource/Blocks/Flow/IF.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Flow/IF.mpb -------------------------------------------------------------------------------- /resource/Blocks/Flow/Repeat.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Flow/Repeat.mpb -------------------------------------------------------------------------------- /resource/Blocks/Flow/Switch.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Flow/Switch.mpb -------------------------------------------------------------------------------- /resource/Blocks/Gyro/FreeSixIMU.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Gyro/FreeSixIMU.mpb -------------------------------------------------------------------------------- /resource/Blocks/Math/MathIntAbs.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Math/MathIntAbs.mpb -------------------------------------------------------------------------------- /resource/Blocks/Math/MathIntAdd.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Math/MathIntAdd.mpb -------------------------------------------------------------------------------- /resource/Blocks/Mind+Kit/KitLED.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Mind+Kit/KitLED.mpb -------------------------------------------------------------------------------- /resource/Blocks/Moto/MotoShield.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Moto/MotoShield.mpb -------------------------------------------------------------------------------- /resource/Blocks/OBD/EasyOBDSpeed.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/OBD/EasyOBDSpeed.mpb -------------------------------------------------------------------------------- /resource/Blocks/Serial/SendEvent.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Serial/SendEvent.mpb -------------------------------------------------------------------------------- /resource/Blocks/Serial/WaitEvent.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Serial/WaitEvent.mpb -------------------------------------------------------------------------------- /resource/Blocks/Servo/ServoTurn.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Servo/ServoTurn.mpb -------------------------------------------------------------------------------- /resource/Blocks/Sound/Speaker.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Sound/Speaker.mpb -------------------------------------------------------------------------------- /resource/Blocks/Sound/Tone.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Sound/Tone.mpb -------------------------------------------------------------------------------- /resource/Blocks/Temperature/LM35.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Temperature/LM35.mpb -------------------------------------------------------------------------------- /resource/Blocks/Time/Delay.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Time/Delay.mpb -------------------------------------------------------------------------------- /resource/Blocks/Time/Timer.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/Time/Timer.mpb -------------------------------------------------------------------------------- /resource/Blocks/buffer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/Blocks/buffer.dll -------------------------------------------------------------------------------- /resource/fonts/Windows/Intro.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/fonts/Windows/Intro.otf -------------------------------------------------------------------------------- /resource/fonts/Windows/NexaBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/fonts/Windows/NexaBold.otf -------------------------------------------------------------------------------- /resource/fonts/Windows/NexaLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/fonts/Windows/NexaLight.otf -------------------------------------------------------------------------------- /resource/fonts/Windows/msyh.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/fonts/Windows/msyh.ttc -------------------------------------------------------------------------------- /resource/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images.qrc -------------------------------------------------------------------------------- /resource/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/.DS_Store -------------------------------------------------------------------------------- /resource/images/AutoUpdate/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/AutoUpdate/ico.png -------------------------------------------------------------------------------- /resource/images/bb/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb/Start.png -------------------------------------------------------------------------------- /resource/images/bb/UI_Block_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb/UI_Block_BG.png -------------------------------------------------------------------------------- /resource/images/bb/UI_Block_BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb/UI_Block_BI.png -------------------------------------------------------------------------------- /resource/images/bb/UI_Block_BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb/UI_Block_BO.png -------------------------------------------------------------------------------- /resource/images/bb/UI_Block_Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb/UI_Block_Pin.png -------------------------------------------------------------------------------- /resource/images/bb_classify/Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb_classify/Flow.png -------------------------------------------------------------------------------- /resource/images/bb_classify/LCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb_classify/LCD.png -------------------------------------------------------------------------------- /resource/images/bb_classify/Math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb_classify/Math.png -------------------------------------------------------------------------------- /resource/images/bb_classify/Time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb_classify/Time.png -------------------------------------------------------------------------------- /resource/images/bb_classify/moto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/bb_classify/moto.png -------------------------------------------------------------------------------- /resource/images/common/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/common/Back.png -------------------------------------------------------------------------------- /resource/images/common/Cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/common/Cursor.png -------------------------------------------------------------------------------- /resource/images/common/LinePen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/common/LinePen.png -------------------------------------------------------------------------------- /resource/images/common/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/common/Title.png -------------------------------------------------------------------------------- /resource/images/common/roll_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/common/roll_down.png -------------------------------------------------------------------------------- /resource/images/common/roll_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/common/roll_up.png -------------------------------------------------------------------------------- /resource/images/common/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/common/wait.png -------------------------------------------------------------------------------- /resource/images/icon/v095_logop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/icon/v095_logop.ico -------------------------------------------------------------------------------- /resource/images/left_area/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/left_area/Logo.png -------------------------------------------------------------------------------- /resource/images/title/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/title/.DS_Store -------------------------------------------------------------------------------- /resource/images/title/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/title/Title.png -------------------------------------------------------------------------------- /resource/images/title/titlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/title/titlebg.png -------------------------------------------------------------------------------- /resource/images/tool_area/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/tool_area/.DS_Store -------------------------------------------------------------------------------- /resource/images/upload/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/upload/.DS_Store -------------------------------------------------------------------------------- /resource/images/upload/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/upload/done.png -------------------------------------------------------------------------------- /resource/images/upload/done_OVER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/upload/done_OVER.png -------------------------------------------------------------------------------- /resource/images/upload/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/images/upload/error.png -------------------------------------------------------------------------------- /resource/setting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/resource/setting.ini -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/bin/ice-insight: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ice-gdb --debugger avr-insight "$@" 3 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ATOMIC_BLOCK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_atomic.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ATOMIC_FORCEON.3: -------------------------------------------------------------------------------- 1 | .so man3/util_atomic.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ATOMIC_RESTORESTATE.3: -------------------------------------------------------------------------------- 1 | .so man3/util_atomic.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/BADISR_vect.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/BAUD_TOL.3: -------------------------------------------------------------------------------- 1 | .so man3/util_setbaud.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/BLB01.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/BLB02.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/BLB11.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/BLB12.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/BOOTLOADER_SECTION.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/DTOSTR_ALWAYS_SIGN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/DTOSTR_PLUS_SIGN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/DTOSTR_UPPERCASE.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/EDOM.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_errno.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/EEMEM.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/EMPTY_INTERRUPT.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/EOF.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ERANGE.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_errno.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/FDEV_SETUP_STREAM.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/FILE.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/FUSEMEM.3: -------------------------------------------------------------------------------- 1 | .so man3/fuse.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/FUSES.3: -------------------------------------------------------------------------------- 1 | .so man3/fuse.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/F_CPU.3: -------------------------------------------------------------------------------- 1 | .so man3/delay.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/GET_EXTENDED_FUSE_BITS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/GET_HIGH_FUSE_BITS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/GET_LOCK_BITS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/GET_LOW_FUSE_BITS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INFINITY.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT16_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT16_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT16_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT32_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT32_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT32_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT64_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT64_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT64_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT8_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT8_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT8_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INTERRUPT.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INTMAX_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INTMAX_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INTMAX_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INTPTR_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INTPTR_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_FAST16_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_FAST16_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_FAST32_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_FAST32_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_FAST64_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_FAST64_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_FAST8_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_FAST8_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_LEAST16_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_LEAST16_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_LEAST32_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_LEAST32_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_LEAST64_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_LEAST64_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_LEAST8_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/INT_LEAST8_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ISR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ISR_ALIAS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ISR_ALIASOF.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ISR_BLOCK.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ISR_NAKED.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ISR_NOBLOCK.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/LOCKBITS.3: -------------------------------------------------------------------------------- 1 | .so man3/lock.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/LOCKBITS_DEFAULT.3: -------------------------------------------------------------------------------- 1 | .so man3/lock.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/LOCKMEM.3: -------------------------------------------------------------------------------- 1 | .so man3/lock.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/M_PI.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/M_SQRT2.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/NAN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/NONATOMIC_BLOCK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_atomic.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/NONATOMIC_FORCEOFF.3: -------------------------------------------------------------------------------- 1 | .so man3/util_atomic.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/NONATOMIC_RESTORESTATE.3: -------------------------------------------------------------------------------- 1 | .so man3/util_atomic.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PGM_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PGM_VOID_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIX16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIX32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIX8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIXFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIXFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIXFAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIXLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIXLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIXLEAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIXPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRId16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRId32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRId8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIdFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIdFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIdFAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIdLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIdLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIdLEAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIdPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIi16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIi32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIi8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIiFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIiFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIiFAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIiLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIiLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIiLEAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIiPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIo16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIo32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIo8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIoFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIoFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIoFAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIoLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIoLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIoLEAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIoPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIu16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIu32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIu8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIuFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIuFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIuFAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIuLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIuLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIuLEAST8.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PRIuPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PROGMEM.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PSTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PTRDIFF_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/PTRDIFF_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/RANDOM_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/RAND_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNd16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNd32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNdFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNdFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNdLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNdLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNdPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNi16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNi32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNiFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNiFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNiLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNiLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNiPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNo16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNo32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNoFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNoFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNoLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNoLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNoPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNu16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNu32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNuFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNuFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNuLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNuLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNuPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNx16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNx32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNxFAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNxFAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNxLEAST16.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNxLEAST32.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SCNxPTR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SEEK_CUR.3: -------------------------------------------------------------------------------- 1 | .so man3/stdio.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SEEK_END.3: -------------------------------------------------------------------------------- 1 | .so man3/stdio.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SEEK_SET.3: -------------------------------------------------------------------------------- 1 | .so man3/stdio.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SIGNAL.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SIG_ATOMIC_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SIG_ATOMIC_MIN.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/SIZE_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_BUS_ERROR.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MR_ARB_LOST.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MR_DATA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MR_DATA_NACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MR_SLA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MR_SLA_NACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MT_ARB_LOST.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MT_DATA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MT_DATA_NACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MT_SLA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_MT_SLA_NACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_NO_INFO.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_READ.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_REP_START.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_ARB_LOST_GCALL_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_ARB_LOST_SLA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_DATA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_DATA_NACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_GCALL_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_GCALL_DATA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_GCALL_DATA_NACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_SLA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_SR_STOP.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_START.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_STATUS.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_STATUS_MASK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_ST_ARB_LOST_SLA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_ST_DATA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_ST_DATA_NACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_ST_LAST_DATA.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_ST_SLA_ACK.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/TW_WRITE.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UBRRH_VALUE.3: -------------------------------------------------------------------------------- 1 | .so man3/util_setbaud.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UBRRL_VALUE.3: -------------------------------------------------------------------------------- 1 | .so man3/util_setbaud.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UBRR_VALUE.3: -------------------------------------------------------------------------------- 1 | .so man3/util_setbaud.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT16_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT16_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT32_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT32_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT64_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT64_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT8_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT8_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINTMAX_C.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINTMAX_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINTPTR_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT_FAST16_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT_FAST32_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT_FAST64_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT_FAST8_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT_LEAST16_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT_LEAST32_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT_LEAST64_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/UINT_LEAST8_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/USE_2X.3: -------------------------------------------------------------------------------- 1 | .so man3/util_setbaud.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_120MS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_15MS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_1S.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_250MS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_2S.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_30MS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_4S.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_500MS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_60MS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/WDTO_8S.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_AVR_BOOT_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_AVR_FUSE_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/fuse.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_AVR_LOCK_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/lock.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_AVR_POWER_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/power.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_AVR_SLEEP_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/sleep.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_BV.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_sfr.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_EEGET.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_EEPUT.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_FDEV_EOF.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_FDEV_ERR.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_FDEV_SETUP_READ.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_FDEV_SETUP_RW.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_FDEV_SETUP_WRITE.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_FFS.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_SLEEP_CONTROL_REG.3: -------------------------------------------------------------------------------- 1 | .so man3/sleep.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_SLEEP_ENABLE_MASK.3: -------------------------------------------------------------------------------- 1 | .so man3/sleep.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_STDIO_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/stdio.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_STDLIB_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/stdlib.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_STRING_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/string.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_UTIL_ATOMIC_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/atomic.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_UTIL_DELAY_BASIC_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/delay_basic.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_UTIL_DELAY_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/delay.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_UTIL_TWI_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/util_twi.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_WD_CHANGE_BIT.3: -------------------------------------------------------------------------------- 1 | .so man3/wdt.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_WD_CONTROL_REG.3: -------------------------------------------------------------------------------- 1 | .so man3/wdt.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_WD_PS3_MASK.3: -------------------------------------------------------------------------------- 1 | .so man3/wdt.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ATTR_NORETURN__.3: -------------------------------------------------------------------------------- 1 | .so man3/setjmp.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ATTR_PROGMEM__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ATTR_PURE__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__AVR_LIBC_DATE_.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_version.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__AVR_LIBC_DATE_STRING__.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_version.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__AVR_LIBC_MAJOR__.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_version.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__AVR_LIBC_MINOR__.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_version.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__AVR_LIBC_REVISION__.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_version.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__AVR_LIBC_VERSION__.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_version.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__BOOT_LOCK_BITS_SET.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__BOOT_PAGE_ERASE.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__BOOT_PAGE_FILL.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__BOOT_PAGE_WRITE.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__BOOT_RWW_ENABLE.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__BOOT_SIGROW_READ.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__COMMON_ASB.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__COMMON_ASRE.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__CONCAT.3: -------------------------------------------------------------------------------- 1 | .so man3/stdint.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__CONCATenate.3: -------------------------------------------------------------------------------- 1 | .so man3/stdint.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__CTYPE_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_classic__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_dword.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_dword_classic__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_dword_enhanced__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_enhanced__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_float.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_float_classic__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_float_enhanced__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_word.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_word_classic__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ELPM_word_enhanced__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ERRNO_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/errno.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__INTR_ATTRS.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_classic__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_dword.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_dword_classic__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_dword_enhanced__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_enhanced__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_float.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_float_classic__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_float_enhanced__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_word.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_word_classic__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__LPM_word_enhanced__.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__PGMSPACE_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__SETJMP_H_.3: -------------------------------------------------------------------------------- 1 | .so man3/setjmp.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__USING_MINT8.3: -------------------------------------------------------------------------------- 1 | .so man3/stdint.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_erase_alternate.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_erase_extended.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_erase_normal.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_fill_alternate.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_fill_extended.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_fill_normal.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_write_alternate.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_write_extended.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_page_write_normal.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__boot_rww_enable_alternate.3: -------------------------------------------------------------------------------- 1 | .so man3/boot.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__compar_fn_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__malloc_heap_end.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__malloc_heap_start.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__malloc_margin.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__need_NULL.3: -------------------------------------------------------------------------------- 1 | .so man3/stdio.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__need_size_t.3: -------------------------------------------------------------------------------- 1 | .so man3/pgmspace.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__need_wchar_t.3: -------------------------------------------------------------------------------- 1 | .so man3/stdlib.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/__ptr_t.3: -------------------------------------------------------------------------------- 1 | .so man3/stdlib.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_crc16_update.3: -------------------------------------------------------------------------------- 1 | .so man3/util_crc.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_crc_ccitt_update.3: -------------------------------------------------------------------------------- 1 | .so man3/util_crc.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_crc_ibutton_update.3: -------------------------------------------------------------------------------- 1 | .so man3/util_crc.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_crc_xmodem_update.3: -------------------------------------------------------------------------------- 1 | .so man3/util_crc.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_delay_loop_1.3: -------------------------------------------------------------------------------- 1 | .so man3/util_delay_basic.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_delay_loop_2.3: -------------------------------------------------------------------------------- 1 | .so man3/util_delay_basic.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_delay_ms.3: -------------------------------------------------------------------------------- 1 | .so man3/util_delay.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/_delay_us.3: -------------------------------------------------------------------------------- 1 | .so man3/util_delay.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/abort.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/abs.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/acos.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/asin.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/assert.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_assert.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/atan.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/atan2.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/atof.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/atoi.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/atol.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/bit_is_clear.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_sfr.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/bit_is_set.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_sfr.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_is_spm_interrupt.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_lock_bits_set.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_lock_bits_set_safe.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_lock_fuse_bits_get.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_page_erase.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_page_erase_safe.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_page_fill.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_page_fill_safe.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_page_write.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_page_write_safe.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_rww_busy.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_rww_enable.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_rww_enable_safe.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_signature_byte_get.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_spm_busy.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_spm_busy_wait.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_spm_interrupt_disable.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/boot_spm_interrupt_enable.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_boot.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/bsearch.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/calloc.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/cbi.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ceil.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/clearerr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/cli.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/clock_prescale_get.3: -------------------------------------------------------------------------------- 1 | .so man3/power.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/clock_prescale_set.3: -------------------------------------------------------------------------------- 1 | .so man3/power.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/copysign.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/cos.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/cosh.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/div.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/dtostre.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/dtostrf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_busy_wait.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_is_ready.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_read_block.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_read_byte.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_read_dword.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_read_word.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_write_block.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_write_byte.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_write_dword.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/eeprom_write_word.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_eeprom.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/enable_external_int.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/errno.3: -------------------------------------------------------------------------------- 1 | .so man3/errno.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/exit.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/exp.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fabs.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fclose.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fdev_close.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fdev_get_udata.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fdev_set_udata.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fdevopen.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fdim.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/feof.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ferror.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fflush.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ffs.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ffsl.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ffsll.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fgetc.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fgets.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/floor.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fma.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fmax.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fmin.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fmod.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fprintf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fputc.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fputs.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fputs_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fread.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/free.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/frexp.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fscanf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fscanf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/fwrite.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/getc.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/getchar.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/gets.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/hypot.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/inb.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/inp.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int16_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int32_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int64_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int8_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_farptr_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_fast16_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_fast32_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_fast64_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_fast8_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_least16_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_least32_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_least64_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/int_least8_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/intmax_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/intptr_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isalnum.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isalpha.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isascii.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isblank.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/iscntrl.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isdigit.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isfinite.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isgraph.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isinf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/islower.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isnan.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isprint.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ispunct.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isspace.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isupper.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/isxdigit.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/itoa.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/labs.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ldexp.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ldiv.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/log.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/log10.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/longjmp.3: -------------------------------------------------------------------------------- 1 | .so man3/setjmp.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/loop_until_bit_is_clear.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_sfr.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/loop_until_bit_is_set.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_sfr.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/lrint.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/lround.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ltoa.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memccpy.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memchr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memchr_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memcmp.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memcmp_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memcpy.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memcpy_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memmem.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memmem_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memmove.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memrchr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memrchr_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/memset.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/modf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/outb.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/outp.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/p.3: -------------------------------------------------------------------------------- 1 | .so man3/strtok.c.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/parity_even_bit.3: -------------------------------------------------------------------------------- 1 | .so man3/util_parity.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_byte.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_byte_far.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_byte_near.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_dword.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_dword_far.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_dword_near.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_float.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_float_far.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_float_near.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_word.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_word_far.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pgm_read_word_near.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/pow.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/printf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/printf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_char.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_int16_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_int32_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_int64_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_int8_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_uchar.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_uint16_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_uint32_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_uint64_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_uint8_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/prog_void.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/putc.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/putchar.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/puts.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/puts_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/qsort.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/quot.3: -------------------------------------------------------------------------------- 1 | .so man3/div_t.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/rand.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/rand_r.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/random.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/random_r.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/realloc.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/rem.3: -------------------------------------------------------------------------------- 1 | .so man3/div_t.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/reti.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/round.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sbi.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/scanf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/scanf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sei.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_interrupts.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/signbit.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sin.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sinh.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sleep_cpu.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_sleep.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sleep_disable.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_sleep.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sleep_enable.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_sleep.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sleep_mode.3: -------------------------------------------------------------------------------- 1 | .so man3/sleep.h.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/snprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/snprintf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sprintf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sqrt.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/square.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/srand.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/srandom.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sscanf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/sscanf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/stderr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/stdin.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/stdout.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcasecmp.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcasecmp_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcasestr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcasestr_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcat.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcat_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strchr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strchr_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strchrnul.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strchrnul_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcmp.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcmp_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcpy.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcpy_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcspn.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strcspn_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strdup.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strlcat.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strlcat_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strlcpy.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strlcpy_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strlen.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strlen_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strlwr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strncasecmp.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strncasecmp_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strncat.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strncat_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strncmp.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strncmp_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strncpy.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strncpy_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strnlen.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strnlen_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strpbrk.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strpbrk_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strrchr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strrchr_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strrev.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strsep.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strsep_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strspn.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strspn_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strstr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strstr_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_pgmspace.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strtod.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strtok.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strtok_r.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strtol.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strtoul.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/strupr.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_string.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/tan.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/tanh.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/timer_enable_int.3: -------------------------------------------------------------------------------- 1 | .so man3/deprecated_items.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/toascii.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/tolower.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/toupper.3: -------------------------------------------------------------------------------- 1 | .so man3/ctype.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/trunc.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_math.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint16_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint32_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint64_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint8_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_farptr_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_inttypes.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_fast16_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_fast32_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_fast64_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_fast8_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_least16_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_least32_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_least64_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uint_least8_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uintmax_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/uintptr_t.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdint.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ultoa.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/ungetc.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/utoa.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdlib.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vfprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vfprintf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vfscanf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vfscanf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vscanf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vsnprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vsnprintf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vsprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/vsprintf_P.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_stdio.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/wdt_disable.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/wdt_enable.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/doc/avr-libc/man/man3/wdt_reset.3: -------------------------------------------------------------------------------- 1 | .so man3/avr_watchdog.3 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/lib/gcc/avr/4.3.2/include-fixed/fixed: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/lib/gcc/avr/4.3.2/install-tools/fixinc_list: -------------------------------------------------------------------------------- 1 | ; 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/lib/gcc/avr/4.3.2/install-tools/macro_list: -------------------------------------------------------------------------------- 1 | AVR 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/sample/gcc2.bat: -------------------------------------------------------------------------------- 1 | make.exe %1 >c:\tempfile 2>&1 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/share/insight1.0/images/icons.txt: -------------------------------------------------------------------------------- 1 | Basic Icon Set 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/hardware/tools/avr/share/insight1.0/images2/icons.txt: -------------------------------------------------------------------------------- 1 | Windows-style Icon Set 2 | -------------------------------------------------------------------------------- /resource/tools/ArduinoUploader/Arduino/libraries/GSM/GSM3MobileCellManagement.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/AffirmForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/AffirmForm.cpp -------------------------------------------------------------------------------- /src/AffirmForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/AffirmForm.h -------------------------------------------------------------------------------- /src/AllBlocksForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/AllBlocksForm.cpp -------------------------------------------------------------------------------- /src/AllBlocksForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/AllBlocksForm.h -------------------------------------------------------------------------------- /src/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Animation.cpp -------------------------------------------------------------------------------- /src/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Animation.h -------------------------------------------------------------------------------- /src/BlockMenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/BlockMenuWidget.cpp -------------------------------------------------------------------------------- /src/BlockMenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/BlockMenuWidget.h -------------------------------------------------------------------------------- /src/CallUpdateProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/CallUpdateProgram.cpp -------------------------------------------------------------------------------- /src/CallUpdateProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/CallUpdateProgram.h -------------------------------------------------------------------------------- /src/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Common.h -------------------------------------------------------------------------------- /src/CurveProgressionWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/CurveProgressionWidget.cpp -------------------------------------------------------------------------------- /src/CurveProgressionWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/CurveProgressionWidget.h -------------------------------------------------------------------------------- /src/CustomFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/CustomFont.cpp -------------------------------------------------------------------------------- /src/CustomFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/CustomFont.h -------------------------------------------------------------------------------- /src/FileInforForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/FileInforForm.cpp -------------------------------------------------------------------------------- /src/FileInforForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/FileInforForm.h -------------------------------------------------------------------------------- /src/FunctionArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/FunctionArea.cpp -------------------------------------------------------------------------------- /src/FunctionArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/FunctionArea.h -------------------------------------------------------------------------------- /src/FunctionAreaWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/FunctionAreaWidget.cpp -------------------------------------------------------------------------------- /src/FunctionAreaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/FunctionAreaWidget.h -------------------------------------------------------------------------------- /src/IntroduceForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/IntroduceForm.cpp -------------------------------------------------------------------------------- /src/IntroduceForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/IntroduceForm.h -------------------------------------------------------------------------------- /src/IntroduceFromRight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/IntroduceFromRight.cpp -------------------------------------------------------------------------------- /src/IntroduceFromRight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/IntroduceFromRight.h -------------------------------------------------------------------------------- /src/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Label.cpp -------------------------------------------------------------------------------- /src/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Label.h -------------------------------------------------------------------------------- /src/ListWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/ListWidget.cpp -------------------------------------------------------------------------------- /src/ListWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/ListWidget.h -------------------------------------------------------------------------------- /src/ListWidgetAdvanceBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/ListWidgetAdvanceBlock.cpp -------------------------------------------------------------------------------- /src/ListWidgetAdvanceBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/ListWidgetAdvanceBlock.h -------------------------------------------------------------------------------- /src/ListWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/ListWidgetItem.cpp -------------------------------------------------------------------------------- /src/ListWidgetItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/ListWidgetItem.h -------------------------------------------------------------------------------- /src/ListWidgetItemWidget_Photo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/ListWidgetItemWidget_Photo.cpp -------------------------------------------------------------------------------- /src/ListWidgetItemWidget_Photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/ListWidgetItemWidget_Photo.h -------------------------------------------------------------------------------- /src/LoginInforWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/LoginInforWidget.cpp -------------------------------------------------------------------------------- /src/LoginInforWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/LoginInforWidget.h -------------------------------------------------------------------------------- /src/MindKitForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/MindKitForm.cpp -------------------------------------------------------------------------------- /src/MindKitForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/MindKitForm.h -------------------------------------------------------------------------------- /src/MindKitPushButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/MindKitPushButton.cpp -------------------------------------------------------------------------------- /src/MindKitPushButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/MindKitPushButton.h -------------------------------------------------------------------------------- /src/Other/Data/DataBaseHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Other/Data/DataBaseHandle.cpp -------------------------------------------------------------------------------- /src/Other/Data/DataBaseHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Other/Data/DataBaseHandle.h -------------------------------------------------------------------------------- /src/Other/Data/DataStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Other/Data/DataStruct.h -------------------------------------------------------------------------------- /src/Other/Data/GetBlockData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Other/Data/GetBlockData.cpp -------------------------------------------------------------------------------- /src/Other/Data/GetBlockData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Other/Data/GetBlockData.h -------------------------------------------------------------------------------- /src/Other/Data/ResultsetBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Other/Data/ResultsetBase.cpp -------------------------------------------------------------------------------- /src/Other/Data/ResultsetBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Other/Data/ResultsetBase.h -------------------------------------------------------------------------------- /src/Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Param.cpp -------------------------------------------------------------------------------- /src/Param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Param.h -------------------------------------------------------------------------------- /src/Parameter_AnalogPin_Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_AnalogPin_Form.cpp -------------------------------------------------------------------------------- /src/Parameter_AnalogPin_Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_AnalogPin_Form.h -------------------------------------------------------------------------------- /src/Parameter_DigitalPin_Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_DigitalPin_Form.cpp -------------------------------------------------------------------------------- /src/Parameter_DigitalPin_Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_DigitalPin_Form.h -------------------------------------------------------------------------------- /src/Parameter_Integer_Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_Integer_Form.cpp -------------------------------------------------------------------------------- /src/Parameter_Integer_Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_Integer_Form.h -------------------------------------------------------------------------------- /src/Parameter_LED8x8_Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_LED8x8_Form.cpp -------------------------------------------------------------------------------- /src/Parameter_LED8x8_Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_LED8x8_Form.h -------------------------------------------------------------------------------- /src/Parameter_String_Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_String_Form.cpp -------------------------------------------------------------------------------- /src/Parameter_String_Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_String_Form.h -------------------------------------------------------------------------------- /src/Parameter_Time_Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_Time_Form.cpp -------------------------------------------------------------------------------- /src/Parameter_Time_Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_Time_Form.h -------------------------------------------------------------------------------- /src/Parameter_operator_Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_operator_Form.cpp -------------------------------------------------------------------------------- /src/Parameter_operator_Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Parameter_operator_Form.h -------------------------------------------------------------------------------- /src/PushButtonBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/PushButtonBase.cpp -------------------------------------------------------------------------------- /src/PushButtonBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/PushButtonBase.h -------------------------------------------------------------------------------- /src/PushButtonBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/PushButtonBlock.cpp -------------------------------------------------------------------------------- /src/PushButtonBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/PushButtonBlock.h -------------------------------------------------------------------------------- /src/PushButtonDone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/PushButtonDone.cpp -------------------------------------------------------------------------------- /src/PushButtonDone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/PushButtonDone.h -------------------------------------------------------------------------------- /src/PushButtonMindKit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/PushButtonMindKit.cpp -------------------------------------------------------------------------------- /src/PushButtonMindKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/PushButtonMindKit.h -------------------------------------------------------------------------------- /src/SerialDataThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/SerialDataThread.cpp -------------------------------------------------------------------------------- /src/SerialDataThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/SerialDataThread.h -------------------------------------------------------------------------------- /src/SerialPortToolForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/SerialPortToolForm.cpp -------------------------------------------------------------------------------- /src/SerialPortToolForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/SerialPortToolForm.h -------------------------------------------------------------------------------- /src/SerialSettingWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/SerialSettingWidget.cpp -------------------------------------------------------------------------------- /src/SerialSettingWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/SerialSettingWidget.h -------------------------------------------------------------------------------- /src/Sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Sleep.cpp -------------------------------------------------------------------------------- /src/Sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Sleep.h -------------------------------------------------------------------------------- /src/UploadParameterWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/UploadParameterWidget.cpp -------------------------------------------------------------------------------- /src/UploadParameterWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/UploadParameterWidget.h -------------------------------------------------------------------------------- /src/UploadSettingForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/UploadSettingForm.cpp -------------------------------------------------------------------------------- /src/UploadSettingForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/UploadSettingForm.h -------------------------------------------------------------------------------- /src/UploadWaitForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/UploadWaitForm.cpp -------------------------------------------------------------------------------- /src/UploadWaitForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/UploadWaitForm.h -------------------------------------------------------------------------------- /src/Uploader/ArduinoUploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/ArduinoUploader.cpp -------------------------------------------------------------------------------- /src/Uploader/ArduinoUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/ArduinoUploader.h -------------------------------------------------------------------------------- /src/Uploader/DFRobotUploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/DFRobotUploader.cpp -------------------------------------------------------------------------------- /src/Uploader/DFRobotUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/DFRobotUploader.h -------------------------------------------------------------------------------- /src/Uploader/ToolBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/ToolBase.cpp -------------------------------------------------------------------------------- /src/Uploader/ToolBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/ToolBase.h -------------------------------------------------------------------------------- /src/Uploader/ToolFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/ToolFactory.cpp -------------------------------------------------------------------------------- /src/Uploader/ToolsFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/ToolsFactory.h -------------------------------------------------------------------------------- /src/Uploader/Translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/Translate.cpp -------------------------------------------------------------------------------- /src/Uploader/Translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/Translate.h -------------------------------------------------------------------------------- /src/Uploader/Uploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/Uploader.cpp -------------------------------------------------------------------------------- /src/Uploader/Uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/Uploader/Uploader.h -------------------------------------------------------------------------------- /src/WidgetBackgroundRight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/WidgetBackgroundRight.cpp -------------------------------------------------------------------------------- /src/WidgetBackgroundRight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/WidgetBackgroundRight.h -------------------------------------------------------------------------------- /src/WidgetForListWidgetBegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/WidgetForListWidgetBegin.cpp -------------------------------------------------------------------------------- /src/WidgetForListWidgetBegin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/WidgetForListWidgetBegin.h -------------------------------------------------------------------------------- /src/WidgetMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/WidgetMain.cpp -------------------------------------------------------------------------------- /src/WidgetMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/WidgetMain.h -------------------------------------------------------------------------------- /src/WidgetShowScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/WidgetShowScene.cpp -------------------------------------------------------------------------------- /src/WidgetShowScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/WidgetShowScene.h -------------------------------------------------------------------------------- /src/dptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/dptr.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/src/main.cpp -------------------------------------------------------------------------------- /ui/AffirmForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/AffirmForm.ui -------------------------------------------------------------------------------- /ui/AllBlocksForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/AllBlocksForm.ui -------------------------------------------------------------------------------- /ui/BlockMenuWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/BlockMenuWidget.ui -------------------------------------------------------------------------------- /ui/FileInforForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/FileInforForm.ui -------------------------------------------------------------------------------- /ui/FunctionArea.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/FunctionArea.ui -------------------------------------------------------------------------------- /ui/FunctionAreaWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/FunctionAreaWidget.ui -------------------------------------------------------------------------------- /ui/IntroduceForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/IntroduceForm.ui -------------------------------------------------------------------------------- /ui/ListWidgetItemWidget_Photo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/ListWidgetItemWidget_Photo.ui -------------------------------------------------------------------------------- /ui/LoginInforWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/LoginInforWidget.ui -------------------------------------------------------------------------------- /ui/MindKitForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/MindKitForm.ui -------------------------------------------------------------------------------- /ui/Parameter_AnalogPin_Form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/Parameter_AnalogPin_Form.ui -------------------------------------------------------------------------------- /ui/Parameter_DigitalPin_Form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/Parameter_DigitalPin_Form.ui -------------------------------------------------------------------------------- /ui/Parameter_Integer_Form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/Parameter_Integer_Form.ui -------------------------------------------------------------------------------- /ui/Parameter_LED8x8_Form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/Parameter_LED8x8_Form.ui -------------------------------------------------------------------------------- /ui/Parameter_String_Form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/Parameter_String_Form.ui -------------------------------------------------------------------------------- /ui/Parameter_Time_Form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/Parameter_Time_Form.ui -------------------------------------------------------------------------------- /ui/Parameter_operator_Form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/Parameter_operator_Form.ui -------------------------------------------------------------------------------- /ui/SerialPortToolForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/SerialPortToolForm.ui -------------------------------------------------------------------------------- /ui/SerialSettingWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/SerialSettingWidget.ui -------------------------------------------------------------------------------- /ui/UploadParameterWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/UploadParameterWidget.ui -------------------------------------------------------------------------------- /ui/UploadSettingForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/UploadSettingForm.ui -------------------------------------------------------------------------------- /ui/UploadWaitForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/UploadWaitForm.ui -------------------------------------------------------------------------------- /ui/WidgetForListWidgetBegin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/WidgetForListWidgetBegin.ui -------------------------------------------------------------------------------- /ui/WidgetMain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/ui/WidgetMain.ui -------------------------------------------------------------------------------- /大略文档.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFRobot/Mindplus-Desktop/HEAD/大略文档.txt --------------------------------------------------------------------------------