From e98eaea9299b433afb6c22adaf2e0ef2a6b31554 Mon Sep 17 00:00:00 2001 From: midchildan Date: Wed, 14 Nov 2018 19:47:05 +0900 Subject: [PATCH 1/8] Squashed 'platform/qemu-arm/circle/' content from commit 7666a073 git-subtree-dir: platform/qemu-arm/circle git-subtree-split: 7666a073e33790df1b9ca6be65e0d3879c5deaa4 --- .gitignore | 89 + CREDITS | 48 + Doxyfile | 2331 +++ LICENSE | 674 + README.md | 149 + Rules.mk | 125 + addon/OneWire/Makefile | 13 + addon/OneWire/OneWire.cpp | 570 + addon/OneWire/OneWire.h | 267 + addon/OneWire/sample/Makefile | 12 + addon/OneWire/sample/README | 5 + addon/OneWire/sample/ds18x20.cpp | 180 + addon/OneWire/sample/ds18x20.h | 39 + addon/OneWire/sample/kernel.cpp | 84 + addon/OneWire/sample/kernel.h | 55 + addon/OneWire/sample/main.cpp | 47 + addon/Properties/Makefile | 13 + addon/Properties/properties.cpp | 275 + addon/Properties/properties.h | 77 + addon/Properties/propertiesfile.cpp | 290 + addon/Properties/propertiesfile.h | 62 + addon/Properties/sample/Makefile | 15 + addon/Properties/sample/README | 7 + addon/Properties/sample/kernel.cpp | 133 + addon/Properties/sample/kernel.h | 71 + addon/Properties/sample/main.cpp | 47 + addon/Properties/sample/params.txt | 9 + addon/README | 28 + addon/SDCard/Makefile | 13 + addon/SDCard/emmc.cpp | 2089 +++ addon/SDCard/emmc.h | 143 + addon/SDCard/sample/Makefile | 14 + addon/SDCard/sample/README | 7 + addon/SDCard/sample/kernel.cpp | 173 + addon/SDCard/sample/kernel.h | 71 + addon/SDCard/sample/main.cpp | 47 + addon/Spectrum/Makefile | 13 + addon/Spectrum/SpectrumScreen.cpp | 157 + addon/Spectrum/SpectrumScreen.h | 42 + addon/Spectrum/sample/BruceLeeScr.h | 579 + addon/Spectrum/sample/Makefile | 12 + addon/Spectrum/sample/README | 11 + addon/Spectrum/sample/kernel.cpp | 84 + addon/Spectrum/sample/kernel.h | 65 + addon/Spectrum/sample/main.cpp | 47 + addon/WS28XX/Makefile | 13 + addon/WS28XX/sample/Makefile | 12 + addon/WS28XX/sample/README | 7 + addon/WS28XX/sample/kernel.cpp | 131 + addon/WS28XX/sample/kernel.h | 69 + addon/WS28XX/sample/main.cpp | 47 + addon/WS28XX/ws28xxstripe.cpp | 129 + addon/WS28XX/ws28xxstripe.h | 65 + addon/dio/Makefile | 13 + addon/dio/sample/Makefile | 12 + addon/dio/sample/README | 7 + addon/dio/sample/kernel.cpp | 181 + addon/dio/sample/kernel.h | 71 + addon/dio/sample/main.cpp | 47 + addon/dio/spidio.cpp | 321 + addon/dio/spidio.h | 110 + addon/display/Makefile | 13 + addon/display/hd44780device.cpp | 604 + addon/display/hd44780device.h | 144 + addon/display/sample/Makefile | 15 + addon/display/sample/README | 19 + addon/display/sample/kernel.cpp | 169 + addon/display/sample/kernel.h | 76 + addon/display/sample/main.cpp | 47 + addon/fatfs/Makefile | 13 + addon/fatfs/diskio.cpp | 176 + addon/fatfs/diskio.h | 77 + addon/fatfs/ff.c | 6554 ++++++++ addon/fatfs/ff.h | 405 + addon/fatfs/ffconf.h | 288 + addon/fatfs/ffunicode.c | 15597 ++++++++++++++++++ addon/fatfs/sample/Makefile | 16 + addon/fatfs/sample/README | 25 + addon/fatfs/sample/kernel.cpp | 191 + addon/fatfs/sample/kernel.h | 73 + addon/fatfs/sample/main.cpp | 47 + addon/fatfs/syscall.cpp | 242 + addon/linux/COPYING | 356 + addon/linux/Makefile | 16 + addon/linux/README | 15 + addon/linux/atomic.h | 99 + addon/linux/barrier.h | 20 + addon/linux/bug.cpp | 11 + addon/linux/bug.h | 56 + addon/linux/compiler.h | 18 + addon/linux/completion.cpp | 77 + addon/linux/completion.h | 53 + addon/linux/delay.cpp | 13 + addon/linux/delay.h | 16 + addon/linux/device.cpp | 35 + addon/linux/device.h | 33 + addon/linux/dma-mapping.cpp | 14 + addon/linux/dma-mapping.h | 17 + addon/linux/err.h | 69 + addon/linux/errno.h | 39 + addon/linux/interrupt.cpp | 31 + addon/linux/interrupt.h | 38 + addon/linux/io.h | 26 + addon/linux/ioport.h | 17 + addon/linux/jiffies.h | 16 + addon/linux/kern_levels.h | 13 + addon/linux/kernel.h | 38 + addon/linux/kthread.cpp | 53 + addon/linux/kthread.h | 18 + addon/linux/linuxdevice.cpp | 55 + addon/linux/linuxdevice.h | 31 + addon/linux/linuxemu.cpp | 20 + addon/linux/linuxemu.h | 14 + addon/linux/list.h | 60 + addon/linux/module.h | 15 + addon/linux/mutex.cpp | 27 + addon/linux/mutex.h | 32 + addon/linux/pagemap.h | 8 + addon/linux/platform_device.cpp | 26 + addon/linux/platform_device.h | 38 + addon/linux/printk.cpp | 40 + addon/linux/printk.h | 29 + addon/linux/raspberrypi-firmware.cpp | 34 + addon/linux/raspberrypi-firmware.h | 123 + addon/linux/rwlock.cpp | 52 + addon/linux/rwlock.h | 34 + addon/linux/sched.h | 31 + addon/linux/semaphore.cpp | 43 + addon/linux/semaphore.h | 32 + addon/linux/slab.h | 40 + addon/linux/spinlock.cpp | 75 + addon/linux/spinlock.h | 41 + addon/linux/sprintf.cpp | 41 + addon/linux/string.h | 1 + addon/linux/timer.cpp | 114 + addon/linux/timer.h | 29 + addon/linux/types.h | 27 + addon/linux/uaccess.h | 29 + addon/qemu/gpiodemo/Makefile | 11 + addon/qemu/gpiodemo/README | 15 + addon/qemu/gpiodemo/kernel.cpp | 95 + addon/qemu/gpiodemo/kernel.h | 54 + addon/qemu/gpiodemo/main.cpp | 47 + addon/rtc/Makefile | 13 + addon/rtc/mcp7941x.cpp | 215 + addon/rtc/mcp7941x.h | 49 + addon/rtc/rtc.h | 36 + addon/rtc/sample/Makefile | 17 + addon/rtc/sample/README | 7 + addon/rtc/sample/kernel.cpp | 161 + addon/rtc/sample/kernel.h | 77 + addon/rtc/sample/main.cpp | 47 + addon/sensor/Makefile | 13 + addon/sensor/hcsr04.cpp | 86 + addon/sensor/hcsr04.h | 47 + addon/sensor/mpu6050.cpp | 144 + addon/sensor/mpu6050.h | 74 + addon/sensor/sample/hcsr04/Makefile | 12 + addon/sensor/sample/hcsr04/README | 17 + addon/sensor/sample/hcsr04/kernel.cpp | 102 + addon/sensor/sample/hcsr04/kernel.h | 70 + addon/sensor/sample/hcsr04/main.cpp | 47 + addon/sensor/sample/mpu6050/Makefile | 12 + addon/sensor/sample/mpu6050/README | 14 + addon/sensor/sample/mpu6050/kernel.cpp | 115 + addon/sensor/sample/mpu6050/kernel.h | 71 + addon/sensor/sample/mpu6050/main.cpp | 47 + addon/tftpfileserver/Makefile | 13 + addon/tftpfileserver/sample/Makefile | 19 + addon/tftpfileserver/sample/README | 29 + addon/tftpfileserver/sample/kernel.cpp | 140 + addon/tftpfileserver/sample/kernel.h | 76 + addon/tftpfileserver/sample/main.cpp | 47 + addon/tftpfileserver/tftpfileserver.cpp | 87 + addon/tftpfileserver/tftpfileserver.h | 46 + addon/ugui/LICENSE.md | 49 + addon/ugui/Makefile | 13 + addon/ugui/README.md | 28 + addon/ugui/sample/Makefile | 17 + addon/ugui/sample/README | 119 + addon/ugui/sample/controlwindow.cpp | 375 + addon/ugui/sample/controlwindow.h | 86 + addon/ugui/sample/kernel.cpp | 121 + addon/ugui/sample/kernel.h | 82 + addon/ugui/sample/main.cpp | 47 + addon/ugui/sample/recorder.cpp | 280 + addon/ugui/sample/recorder.h | 82 + addon/ugui/sample/sampler.S | 96 + addon/ugui/sample/sampler.h | 36 + addon/ugui/sample/scopeconfig.cpp | 113 + addon/ugui/sample/scopeconfig.h | 63 + addon/ugui/sample/scopewindow.cpp | 290 + addon/ugui/sample/scopewindow.h | 67 + addon/ugui/sample/timeline.cpp | 174 + addon/ugui/sample/timeline.h | 69 + addon/ugui/system.h | 1 + addon/ugui/ugui.c | 8237 +++++++++ addon/ugui/ugui.h | 1052 ++ addon/ugui/ugui_config.h | 62 + addon/ugui/uguicpp.cpp | 151 + addon/ugui/uguicpp.h | 59 + addon/vc4/README | 29 + addon/vc4/makeall | 14 + addon/vc4/sound/Makefile | 13 + addon/vc4/sound/sample/Makefile | 22 + addon/vc4/sound/sample/README | 28 + addon/vc4/sound/sample/kernel.cpp | 110 + addon/vc4/sound/sample/kernel.h | 73 + addon/vc4/sound/sample/main.cpp | 47 + addon/vc4/sound/sample/sound.h.gz | Bin 0 -> 163115 bytes addon/vc4/sound/vc_vchi_audioserv_defs.h | 118 + addon/vc4/sound/vchiqsoundbasedevice.cpp | 469 + addon/vc4/sound/vchiqsoundbasedevice.h | 128 + addon/vc4/sound/vchiqsounddevice.cpp | 131 + addon/vc4/sound/vchiqsounddevice.h | 73 + addon/vc4/vchi/connections/connection.h | 334 + addon/vc4/vchi/message_drivers/message.h | 209 + addon/vc4/vchi/vchi.h | 386 + addon/vc4/vchi/vchi_cfg.h | 224 + addon/vc4/vchi/vchi_cfg_internal.h | 71 + addon/vc4/vchi/vchi_common.h | 175 + addon/vc4/vchi/vchi_mh.h | 42 + addon/vc4/vchiq/Makefile | 15 + addon/vc4/vchiq/vchiq.h | 40 + addon/vc4/vchiq/vchiq_2835.h | 44 + addon/vc4/vchiq/vchiq_2835_arm.c | 635 + addon/vc4/vchiq/vchiq_arm.c | 2947 ++++ addon/vc4/vchiq/vchiq_arm.h | 234 + addon/vc4/vchiq/vchiq_cfg.h | 69 + addon/vc4/vchiq/vchiq_connected.c | 120 + addon/vc4/vchiq/vchiq_connected.h | 50 + addon/vc4/vchiq/vchiq_core.c | 3939 +++++ addon/vc4/vchiq/vchiq_core.h | 724 + addon/vc4/vchiq/vchiq_if.h | 201 + addon/vc4/vchiq/vchiq_kern_lib.c | 459 + addon/vc4/vchiq/vchiq_killable.h | 80 + addon/vc4/vchiq/vchiq_shim.c | 868 + addon/vc4/vchiq/vchiq_util.c | 159 + addon/vc4/vchiq/vchiq_util.h | 83 + addon/vc4/vchiq/vchiqdevice.cpp | 19 + addon/vc4/vchiq/vchiqdevice.h | 17 + addon/webconsole/Makefile | 13 + addon/webconsole/logbuffer.cpp | 102 + addon/webconsole/logbuffer.h | 44 + addon/webconsole/sample/Makefile | 17 + addon/webconsole/sample/README | 3 + addon/webconsole/sample/kernel.cpp | 118 + addon/webconsole/sample/kernel.h | 72 + addon/webconsole/sample/main.cpp | 47 + addon/webconsole/webconsole.cpp | 95 + addon/webconsole/webconsole.h | 53 + app/Rules.mk | 5 + app/lib/template/Makefile | 13 + app/lib/template/myclass.cpp | 14 + app/lib/template/myclass.h | 21 + app/makeall | 23 + app/template/Makefile | 12 + app/template/kernel.cpp | 67 + app/template/kernel.h | 54 + app/template/main.cpp | 31 + boot/.gitignore | 4 + boot/Makefile | 23 + circle.ld | 47 + doc/classes.txt | 158 + doc/cmdline.txt | 38 + doc/debug.txt | 54 + doc/eclipse-support.txt | 82 + doc/issues.txt | 23 + doc/keyboard.txt | 35 + doc/memorymap.txt | 86 + doc/multicore.txt | 33 + doc/qemu.txt | 113 + doc/realtime.txt | 32 + doc/screen.txt | 26 + doc/stdlib-support.txt | 46 + include/assert.h | 41 + include/circle/actled.h | 48 + include/circle/alloc.h | 54 + include/circle/armv6mmu.h | 147 + include/circle/bcm2835.h | 288 + include/circle/bcm2835int.h | 186 + include/circle/bcm2836.h | 103 + include/circle/bcmframebuffer.h | 69 + include/circle/bcmmailbox.h | 46 + include/circle/bcmpropertytags.h | 254 + include/circle/bcmrandom.h | 40 + include/circle/bt/bcmvendor.h | 22 + include/circle/bt/bluetooth.h | 217 + include/circle/bt/btdevicemanager.h | 71 + include/circle/bt/bthcilayer.h | 77 + include/circle/bt/btinquiryresults.h | 47 + include/circle/bt/btlogicallayer.h | 52 + include/circle/bt/btqueue.h | 50 + include/circle/bt/btsubsystem.h | 55 + include/circle/bt/bttask.h | 38 + include/circle/bt/bttransportlayer.h | 32 + include/circle/bt/btuarttransport.h | 65 + include/circle/chargenerator.h | 41 + include/circle/classallocator.h | 116 + include/circle/cputhrottle.h | 114 + include/circle/debug.h | 47 + include/circle/device.h | 39 + include/circle/devicenameservice.h | 57 + include/circle/dmachannel.h | 110 + include/circle/exception.h | 29 + include/circle/exceptionhandler.h | 44 + include/circle/exceptionstub.h | 93 + include/circle/fs/fat/fat.h | 54 + include/circle/fs/fat/fatcache.h | 116 + include/circle/fs/fat/fatdir.h | 59 + include/circle/fs/fat/fatfs.h | 167 + include/circle/fs/fat/fatfsdef.h | 134 + include/circle/fs/fat/fatinfo.h | 102 + include/circle/fs/fsdef.h | 48 + include/circle/fs/partition.h | 47 + include/circle/fs/partitionmanager.h | 45 + include/circle/gpioclock.h | 41 + include/circle/gpiomanager.h | 50 + include/circle/gpiopin.h | 136 + include/circle/gpiopinfiq.h | 47 + include/circle/i2cmaster.h | 64 + include/circle/i2cslave.h | 47 + include/circle/i2ssoundbasedevice.h | 111 + include/circle/input/console.h | 74 + include/circle/input/keyboardbehaviour.h | 90 + include/circle/input/keyboardbuffer.h | 59 + include/circle/input/keymap.h | 139 + include/circle/input/linediscipline.h | 63 + include/circle/input/mousebehaviour.h | 77 + include/circle/input/touchscreen.h | 64 + include/circle/interrupt.h | 62 + include/circle/koptions.h | 80 + include/circle/logger.h | 102 + include/circle/machineinfo.h | 98 + include/circle/macros.h | 33 + include/circle/memio.h | 43 + include/circle/memory.h | 70 + include/circle/memorymap.h | 62 + include/circle/multicore.h | 71 + include/circle/net/arphandler.h | 77 + include/circle/net/checksumcalculator.h | 63 + include/circle/net/dhcpclient.h | 111 + include/circle/net/dnsclient.h | 44 + include/circle/net/http.h | 61 + include/circle/net/httpclient.h | 64 + include/circle/net/httpdaemon.h | 81 + include/circle/net/icmphandler.h | 70 + include/circle/net/in.h | 13 + include/circle/net/ipaddress.h | 70 + include/circle/net/linklayer.h | 66 + include/circle/net/mqtt.h | 73 + include/circle/net/mqttclient.h | 208 + include/circle/net/mqttreceivepacket.h | 71 + include/circle/net/mqttsendpacket.h | 75 + include/circle/net/netconfig.h | 67 + include/circle/net/netconnection.h | 88 + include/circle/net/netdevlayer.h | 51 + include/circle/net/netqueue.h | 50 + include/circle/net/netsocket.h | 118 + include/circle/net/netsubsystem.h | 66 + include/circle/net/nettask.h | 38 + include/circle/net/networklayer.h | 104 + include/circle/net/ntpclient.h | 39 + include/circle/net/ntpdaemon.h | 43 + include/circle/net/retransmissionqueue.h | 53 + include/circle/net/retranstimeoutcalc.h | 62 + include/circle/net/routecache.h | 42 + include/circle/net/socket.h | 126 + include/circle/net/syslogdaemon.h | 70 + include/circle/net/tcpconnection.h | 166 + include/circle/net/tcprejector.h | 63 + include/circle/net/tftpdaemon.h | 58 + include/circle/net/transportlayer.h | 82 + include/circle/net/udpconnection.h | 82 + include/circle/nulldevice.h | 38 + include/circle/pagetable.h | 45 + include/circle/ptrarray.h | 45 + include/circle/ptrlist.h | 47 + include/circle/pwmoutput.h | 52 + include/circle/pwmsoundbasedevice.h | 113 + include/circle/pwmsounddevice.h | 51 + include/circle/sched/scheduler.h | 67 + include/circle/sched/synchronizationevent.h | 44 + include/circle/sched/task.h | 70 + include/circle/sched/taskswitch.h | 56 + include/circle/screen.h | 197 + include/circle/serial.h | 131 + include/circle/soundbasedevice.h | 161 + include/circle/spimaster.h | 77 + include/circle/spimasteraux.h | 71 + include/circle/spimasterdma.h | 82 + include/circle/spinlock.h | 85 + include/circle/startup.h | 49 + include/circle/stdarg.h | 29 + include/circle/string.h | 62 + include/circle/synchronize.h | 131 + include/circle/sysconfig.h | 201 + include/circle/time.h | 92 + include/circle/timer.h | 166 + include/circle/tracer.h | 61 + include/circle/types.h | 52 + include/circle/usb/dwhci.h | 223 + include/circle/usb/dwhcidevice.h | 139 + include/circle/usb/dwhciframeschednper.h | 62 + include/circle/usb/dwhciframeschednsplit.h | 56 + include/circle/usb/dwhciframeschedper.h | 63 + include/circle/usb/dwhciframescheduler.h | 46 + include/circle/usb/dwhciregister.h | 59 + include/circle/usb/dwhcirootport.h | 42 + include/circle/usb/dwhcixactqueue.h | 51 + include/circle/usb/dwhcixferstagedata.h | 116 + include/circle/usb/lan7800.h | 73 + include/circle/usb/macaddress.h | 54 + include/circle/usb/netdevice.h | 71 + include/circle/usb/smsc951x.h | 69 + include/circle/usb/usb.h | 185 + include/circle/usb/usbaudio.h | 53 + include/circle/usb/usbbluetooth.h | 60 + include/circle/usb/usbcdcethernet.h | 54 + include/circle/usb/usbconfigparser.h | 50 + include/circle/usb/usbdevice.h | 97 + include/circle/usb/usbdevicefactory.h | 32 + include/circle/usb/usbendpoint.h | 68 + include/circle/usb/usbfunction.h | 66 + include/circle/usb/usbgamepad.h | 85 + include/circle/usb/usbhid.h | 75 + include/circle/usb/usbhiddevice.h | 56 + include/circle/usb/usbhostcontroller.h | 59 + include/circle/usb/usbhub.h | 86 + include/circle/usb/usbkeyboard.h | 75 + include/circle/usb/usbmassdevice.h | 70 + include/circle/usb/usbmidi.h | 66 + include/circle/usb/usbmouse.h | 64 + include/circle/usb/usbprinter.h | 53 + include/circle/usb/usbrequest.h | 76 + include/circle/usb/usbstandardhub.h | 51 + include/circle/usb/usbstring.h | 50 + include/circle/usertimer.h | 68 + include/circle/util.h | 94 + include/circle/version.h | 32 + include/circle/virtualgpiopin.h | 51 + lib/Makefile | 47 + lib/actled.cpp | 132 + lib/alloc.cpp | 344 + lib/assert.cpp | 54 + lib/bcmframebuffer.cpp | 241 + lib/bcmmailbox.cpp | 93 + lib/bcmpropertytags.cpp | 112 + lib/bcmrandom.cpp | 78 + lib/bt/.gitignore | 2 + lib/bt/BCM43430A1.hcd | Bin 0 -> 35976 bytes lib/bt/LICENCE.broadcom_bcm43xx | 65 + lib/bt/Makefile | 44 + lib/bt/btdevicemanager.cpp | 243 + lib/bt/bthcilayer.cpp | 209 + lib/bt/btinquiryresults.cpp | 120 + lib/bt/btlogicallayer.cpp | 158 + lib/bt/btqueue.cpp | 149 + lib/bt/btsubsystem.cpp | 91 + lib/bt/bttask.cpp | 43 + lib/bt/btuarttransport.cpp | 287 + lib/bt/converttool.c | 92 + lib/cache-v7.S | 226 + lib/chargenerator.cpp | 94 + lib/classallocator.cpp | 159 + lib/cputhrottle.cpp | 328 + lib/debug.cpp | 107 + lib/delayloop.S | 15 + lib/device.cpp | 43 + lib/devicenameservice.cpp | 136 + lib/dmachannel.cpp | 360 + lib/exceptionhandler.cpp | 150 + lib/exceptionstub.S | 167 + lib/font.h | 259 + lib/fs/Makefile | 29 + lib/fs/fat/Makefile | 29 + lib/fs/fat/fat.cpp | 238 + lib/fs/fat/fatcache.cpp | 351 + lib/fs/fat/fatdir.cpp | 554 + lib/fs/fat/fatfs.cpp | 480 + lib/fs/fat/fatinfo.cpp | 376 + lib/fs/partition.cpp | 99 + lib/fs/partitionmanager.cpp | 130 + lib/gpioclock.cpp | 79 + lib/gpiomanager.cpp | 141 + lib/gpiopin.cpp | 370 + lib/gpiopinfiq.cpp | 81 + lib/i2cmaster.cpp | 248 + lib/i2cslave.cpp | 222 + lib/i2ssoundbasedevice.cpp | 463 + lib/input/Makefile | 30 + lib/input/console.cpp | 121 + lib/input/keyboardbehaviour.cpp | 194 + lib/input/keyboardbuffer.cpp | 115 + lib/input/keymap.cpp | 327 + lib/input/keymap_de.h | 131 + lib/input/keymap_es.h | 133 + lib/input/keymap_fr.h | 131 + lib/input/keymap_it.h | 131 + lib/input/keymap_uk.h | 131 + lib/input/keymap_us.h | 131 + lib/input/linediscipline.cpp | 187 + lib/input/mousebehaviour.cpp | 238 + lib/input/touchscreen.cpp | 178 + lib/interrupt.cpp | 257 + lib/koptions.cpp | 287 + lib/libhelper.cpp | 94 + lib/libstub.S | 28 + lib/logger.cpp | 386 + lib/machineinfo.cpp | 368 + lib/memory.cpp | 297 + lib/multicore.cpp | 195 + lib/net/Makefile | 36 + lib/net/arphandler.cpp | 339 + lib/net/checksumcalculator.cpp | 114 + lib/net/dhcpclient.cpp | 850 + lib/net/dnsclient.cpp | 321 + lib/net/httpclient.cpp | 326 + lib/net/httpdaemon.cpp | 510 + lib/net/icmphandler.cpp | 250 + lib/net/ipaddress.cpp | 205 + lib/net/linklayer.cpp | 146 + lib/net/mqttclient.cpp | 911 + lib/net/mqttreceivepacket.cpp | 261 + lib/net/mqttsendpacket.cpp | 246 + lib/net/netconfig.cpp | 136 + lib/net/netconnection.cpp | 75 + lib/net/netdevlayer.cpp | 121 + lib/net/netqueue.cpp | 150 + lib/net/netsocket.cpp | 72 + lib/net/netsubsystem.cpp | 149 + lib/net/nettask.cpp | 43 + lib/net/networklayer.cpp | 291 + lib/net/ntpclient.cpp | 112 + lib/net/ntpdaemon.cpp | 88 + lib/net/retransmissionqueue.cpp | 129 + lib/net/retranstimeoutcalc.cpp | 197 + lib/net/routecache.cpp | 103 + lib/net/socket.cpp | 360 + lib/net/syslogdaemon.cpp | 207 + lib/net/tcpconnection.cpp | 1606 ++ lib/net/tcprejector.cpp | 201 + lib/net/tftpdaemon.cpp | 473 + lib/net/transportlayer.cpp | 423 + lib/net/udpconnection.cpp | 447 + lib/new.cpp | 50 + lib/nulldevice.cpp | 40 + lib/pagetable.cpp | 148 + lib/ptrarray.cpp | 98 + lib/ptrlist.cpp | 188 + lib/purecall.cpp | 25 + lib/pwmoutput.cpp | 144 + lib/pwmsoundbasedevice.cpp | 449 + lib/pwmsounddevice.cpp | 133 + lib/sched/Makefile | 29 + lib/sched/scheduler.cpp | 244 + lib/sched/synchronizationevent.cpp | 77 + lib/sched/task.cpp | 84 + lib/sched/taskswitch.S | 37 + lib/screen.cpp | 826 + lib/serial.cpp | 588 + lib/soundbasedevice.cpp | 412 + lib/spimaster.cpp | 208 + lib/spimasteraux.cpp | 260 + lib/spimasterdma.cpp | 252 + lib/spinlock.cpp | 120 + lib/startup.S | 112 + lib/string.cpp | 609 + lib/synchronize.cpp | 176 + lib/sysinit.cpp | 201 + lib/time.cpp | 239 + lib/timer.cpp | 563 + lib/tracer.cpp | 123 + lib/usb/Makefile | 36 + lib/usb/README | 135 + lib/usb/dwhcidevice.cpp | 1405 ++ lib/usb/dwhciframeschednper.cpp | 189 + lib/usb/dwhciframeschednsplit.cpp | 90 + lib/usb/dwhciframeschedper.cpp | 226 + lib/usb/dwhciregister.cpp | 131 + lib/usb/dwhcirootport.cpp | 92 + lib/usb/dwhcixactqueue.cpp | 143 + lib/usb/dwhcixferstagedata.cpp | 445 + lib/usb/lan7800.cpp | 721 + lib/usb/macaddress.cpp | 104 + lib/usb/netdevice.cpp | 60 + lib/usb/smsc951x.cpp | 473 + lib/usb/usbbluetooth.cpp | 207 + lib/usb/usbcdcethernet.cpp | 241 + lib/usb/usbconfigparser.cpp | 214 + lib/usb/usbdevice.cpp | 538 + lib/usb/usbdevicefactory.cpp | 101 + lib/usb/usbendpoint.cpp | 223 + lib/usb/usbfunction.cpp | 166 + lib/usb/usbgamepad.cpp | 461 + lib/usb/usbhiddevice.cpp | 158 + lib/usb/usbhostcontroller.cpp | 108 + lib/usb/usbkeyboard.cpp | 203 + lib/usb/usbmassdevice.cpp | 640 + lib/usb/usbmidi.cpp | 244 + lib/usb/usbmouse.cpp | 121 + lib/usb/usbprinter.cpp | 138 + lib/usb/usbrequest.cpp | 122 + lib/usb/usbstandardhub.cpp | 364 + lib/usb/usbstring.cpp | 220 + lib/usertimer.cpp | 107 + lib/util.cpp | 462 + lib/util_fast.S | 41 + lib/virtualgpiopin.cpp | 125 + makeall | 49 + makedoc | 10 + sample/01-gpiosimple/Makefile | 11 + sample/01-gpiosimple/README | 3 + sample/01-gpiosimple/kernel.cpp | 55 + sample/01-gpiosimple/kernel.h | 51 + sample/01-gpiosimple/main.cpp | 47 + sample/02-screenpixel/Makefile | 11 + sample/02-screenpixel/README | 5 + sample/02-screenpixel/kernel.cpp | 77 + sample/02-screenpixel/kernel.h | 57 + sample/02-screenpixel/main.cpp | 47 + sample/03-screentext/Makefile | 11 + sample/03-screentext/README | 13 + sample/03-screentext/kernel.cpp | 96 + sample/03-screentext/kernel.h | 60 + sample/03-screentext/main.cpp | 47 + sample/04-timer/Makefile | 11 + sample/04-timer/README | 5 + sample/04-timer/kernel.cpp | 111 + sample/04-timer/kernel.h | 68 + sample/04-timer/main.cpp | 47 + sample/05-usbsimple/Makefile | 14 + sample/05-usbsimple/README | 5 + sample/05-usbsimple/kernel.cpp | 114 + sample/05-usbsimple/kernel.h | 68 + sample/05-usbsimple/main.cpp | 47 + sample/06-usbethernet/Makefile | 14 + sample/06-usbethernet/README | 7 + sample/06-usbethernet/kernel.cpp | 144 + sample/06-usbethernet/kernel.h | 68 + sample/06-usbethernet/main.cpp | 47 + sample/07-usbstorage/Makefile | 14 + sample/07-usbstorage/README | 7 + sample/07-usbstorage/kernel.cpp | 160 + sample/07-usbstorage/kernel.h | 68 + sample/07-usbstorage/main.cpp | 47 + sample/08-usbkeyboard/Makefile | 14 + sample/08-usbkeyboard/README | 23 + sample/08-usbkeyboard/kernel.cpp | 155 + sample/08-usbkeyboard/kernel.h | 78 + sample/08-usbkeyboard/main.cpp | 47 + sample/09-softserial/Makefile | 11 + sample/09-softserial/README | 17 + sample/09-softserial/kernel.cpp | 105 + sample/09-softserial/kernel.h | 70 + sample/09-softserial/main.cpp | 47 + sample/09-softserial/softserial.cpp | 281 + sample/09-softserial/softserial.h | 69 + sample/10-usbmouse/Makefile | 14 + sample/10-usbmouse/README | 7 + sample/10-usbmouse/kernel.cpp | 195 + sample/10-usbmouse/kernel.h | 82 + sample/10-usbmouse/main.cpp | 47 + sample/11-gpioclock/Makefile | 11 + sample/11-gpioclock/README | 5 + sample/11-gpioclock/kernel.cpp | 158 + sample/11-gpioclock/kernel.h | 72 + sample/11-gpioclock/main.cpp | 47 + sample/11-gpioclock/sampler.S | 96 + sample/11-gpioclock/sampler.h | 36 + sample/12-pwmsound/Makefile | 18 + sample/12-pwmsound/README | 16 + sample/12-pwmsound/kernel.cpp | 94 + sample/12-pwmsound/kernel.h | 69 + sample/12-pwmsound/main.cpp | 47 + sample/12-pwmsound/sound.h.gz | Bin 0 -> 163115 bytes sample/13-pwmoutput/Makefile | 11 + sample/13-pwmoutput/README | 3 + sample/13-pwmoutput/kernel.cpp | 109 + sample/13-pwmoutput/kernel.h | 72 + sample/13-pwmoutput/main.cpp | 47 + sample/14-usbprinter/Makefile | 14 + sample/14-usbprinter/README | 5 + sample/14-usbprinter/kernel.cpp | 109 + sample/14-usbprinter/kernel.h | 68 + sample/14-usbprinter/main.cpp | 47 + sample/15-files/Makefile | 15 + sample/15-files/README | 5 + sample/15-files/kernel.cpp | 173 + sample/15-files/kernel.h | 71 + sample/15-files/main.cpp | 47 + sample/16-i2cping/Makefile | 11 + sample/16-i2cping/README | 18 + sample/16-i2cping/i2cping.h | 44 + sample/16-i2cping/master/Makefile | 11 + sample/16-i2cping/master/i2cechoclient.cpp | 137 + sample/16-i2cping/master/i2cechoclient.h | 45 + sample/16-i2cping/master/kernel.cpp | 94 + sample/16-i2cping/master/kernel.h | 71 + sample/16-i2cping/master/main.cpp | 47 + sample/16-i2cping/slave/Makefile | 11 + sample/16-i2cping/slave/i2cechoserver.cpp | 108 + sample/16-i2cping/slave/i2cechoserver.h | 45 + sample/16-i2cping/slave/kernel.cpp | 88 + sample/16-i2cping/slave/kernel.h | 69 + sample/16-i2cping/slave/main.cpp | 47 + sample/17-fractal/Makefile | 11 + sample/17-fractal/README | 11 + sample/17-fractal/kernel.cpp | 87 + sample/17-fractal/kernel.h | 69 + sample/17-fractal/main.cpp | 47 + sample/17-fractal/mandelbrot.cpp | 100 + sample/17-fractal/mandelbrot.h | 51 + sample/18-ntptime/Makefile | 16 + sample/18-ntptime/README | 9 + sample/18-ntptime/kernel.cpp | 125 + sample/18-ntptime/kernel.h | 72 + sample/18-ntptime/main.cpp | 47 + sample/19-tasks/Makefile | 12 + sample/19-tasks/README | 9 + sample/19-tasks/kernel.cpp | 113 + sample/19-tasks/kernel.h | 74 + sample/19-tasks/ledtask.cpp | 47 + sample/19-tasks/ledtask.h | 38 + sample/19-tasks/main.cpp | 47 + sample/19-tasks/primetask.cpp | 80 + sample/19-tasks/primetask.h | 50 + sample/19-tasks/screentask.cpp | 51 + sample/19-tasks/screentask.h | 39 + sample/20-tcpsimple/Makefile | 16 + sample/20-tcpsimple/README | 11 + sample/20-tcpsimple/echoserver.cpp | 146 + sample/20-tcpsimple/echoserver.h | 54 + sample/20-tcpsimple/kernel.cpp | 119 + sample/20-tcpsimple/kernel.h | 72 + sample/20-tcpsimple/main.cpp | 47 + sample/21-webserver/Makefile | 39 + sample/21-webserver/README | 7 + sample/21-webserver/converttool.c | 92 + sample/21-webserver/favicon.ico | Bin 0 -> 1150 bytes sample/21-webserver/index.html | 33 + sample/21-webserver/kernel.cpp | 118 + sample/21-webserver/kernel.h | 72 + sample/21-webserver/ledoff.png | Bin 0 -> 573 bytes sample/21-webserver/ledon.png | Bin 0 -> 538 bytes sample/21-webserver/main.cpp | 47 + sample/21-webserver/style.css | 42 + sample/21-webserver/webserver.cpp | 151 + sample/21-webserver/webserver.h | 49 + sample/22-btsimple/Makefile | 16 + sample/22-btsimple/README | 9 + sample/22-btsimple/kernel.cpp | 129 + sample/22-btsimple/kernel.h | 71 + sample/22-btsimple/main.cpp | 47 + sample/23-spisimple/Makefile | 11 + sample/23-spisimple/README | 35 + sample/23-spisimple/kernel.cpp | 121 + sample/23-spisimple/kernel.h | 80 + sample/23-spisimple/main.cpp | 47 + sample/24-hwrandom/Makefile | 11 + sample/24-hwrandom/README | 5 + sample/24-hwrandom/kernel.cpp | 55 + sample/24-hwrandom/kernel.h | 59 + sample/24-hwrandom/main.cpp | 47 + sample/25-spidma/Makefile | 11 + sample/25-spidma/README | 17 + sample/25-spidma/kernel.cpp | 141 + sample/25-spidma/kernel.h | 73 + sample/25-spidma/main.cpp | 47 + sample/26-cpustress/Makefile | 12 + sample/26-cpustress/README | 23 + sample/26-cpustress/kernel.cpp | 90 + sample/26-cpustress/kernel.h | 73 + sample/26-cpustress/main.cpp | 47 + sample/26-cpustress/mandelbrot.cpp | 131 + sample/26-cpustress/mandelbrot.h | 51 + sample/26-cpustress/temptask.cpp | 107 + sample/26-cpustress/temptask.h | 38 + sample/27-usbgamepad/Makefile | 14 + sample/27-usbgamepad/README | 15 + sample/27-usbgamepad/kernel.cpp | 171 + sample/27-usbgamepad/kernel.h | 72 + sample/27-usbgamepad/main.cpp | 47 + sample/28-touchscreen/Makefile | 12 + sample/28-touchscreen/README | 15 + sample/28-touchscreen/kernel.cpp | 139 + sample/28-touchscreen/kernel.h | 75 + sample/28-touchscreen/main.cpp | 47 + sample/29-miniorgan/Makefile | 14 + sample/29-miniorgan/README | 40 + sample/29-miniorgan/kernel.cpp | 91 + sample/29-miniorgan/kernel.h | 69 + sample/29-miniorgan/main.cpp | 47 + sample/29-miniorgan/miniorgan.cpp | 325 + sample/29-miniorgan/miniorgan.h | 84 + sample/30-gpiofiq/Makefile | 11 + sample/30-gpiofiq/README | 35 + sample/30-gpiofiq/kernel.cpp | 123 + sample/30-gpiofiq/kernel.h | 79 + sample/30-gpiofiq/main.cpp | 47 + sample/31-webclient/Makefile | 16 + sample/31-webclient/README | 26 + sample/31-webclient/htmlscanner.cpp | 174 + sample/31-webclient/htmlscanner.h | 62 + sample/31-webclient/kernel.cpp | 291 + sample/31-webclient/kernel.h | 77 + sample/31-webclient/main.cpp | 47 + sample/32-i2cshell/Makefile | 14 + sample/32-i2cshell/README | 76 + sample/32-i2cshell/i2cshell.cpp | 497 + sample/32-i2cshell/i2cshell.h | 78 + sample/32-i2cshell/kernel.cpp | 107 + sample/32-i2cshell/kernel.h | 75 + sample/32-i2cshell/main.cpp | 47 + sample/33-syslog/Makefile | 21 + sample/33-syslog/README | 27 + sample/33-syslog/kernel.cpp | 141 + sample/33-syslog/kernel.h | 72 + sample/33-syslog/main.cpp | 47 + sample/33-syslog/syslogserver.c | 94 + sample/34-sounddevices/Makefile | 22 + sample/34-sounddevices/README | 36 + sample/34-sounddevices/config.h | 33 + sample/34-sounddevices/kernel.cpp | 227 + sample/34-sounddevices/kernel.h | 87 + sample/34-sounddevices/main.cpp | 47 + sample/34-sounddevices/oscillator.cpp | 161 + sample/34-sounddevices/oscillator.h | 65 + sample/34-sounddevices/synthmodule.h | 33 + sample/35-mqttclient/Makefile | 16 + sample/35-mqttclient/README | 62 + sample/35-mqttclient/kernel.cpp | 122 + sample/35-mqttclient/kernel.h | 72 + sample/35-mqttclient/main.cpp | 47 + sample/35-mqttclient/mqttsampleclient.cpp | 133 + sample/35-mqttclient/mqttsampleclient.h | 52 + sample/36-softpwm/Makefile | 11 + sample/36-softpwm/README | 20 + sample/36-softpwm/kernel.cpp | 133 + sample/36-softpwm/kernel.h | 75 + sample/36-softpwm/main.cpp | 47 + sample/36-softpwm/softpwmoutput.cpp | 94 + sample/36-softpwm/softpwmoutput.h | 60 + sample/README | 38 + sample/Rules.mk | 29 + sample/makeall | 8 + sample/makelatest | 5 + tools/bootloader/BCM2835.h | 14 + tools/bootloader/BCM2836.h | 14 + tools/bootloader/Makefile | 38 + tools/bootloader/README | 45 + tools/bootloader/bootloader07.c | 229 + tools/bootloader/loader | 12 + tools/bootloader/periph.c | 156 + tools/bootloader/vectors.s | 64 + tools/flasher.py | 66 + tools/reboottool.py | 41 + 857 files changed, 133140 insertions(+) create mode 100644 .gitignore create mode 100644 CREDITS create mode 100644 Doxyfile create mode 100644 LICENSE create mode 100644 README.md create mode 100644 Rules.mk create mode 100644 addon/OneWire/Makefile create mode 100644 addon/OneWire/OneWire.cpp create mode 100644 addon/OneWire/OneWire.h create mode 100644 addon/OneWire/sample/Makefile create mode 100644 addon/OneWire/sample/README create mode 100644 addon/OneWire/sample/ds18x20.cpp create mode 100644 addon/OneWire/sample/ds18x20.h create mode 100644 addon/OneWire/sample/kernel.cpp create mode 100644 addon/OneWire/sample/kernel.h create mode 100644 addon/OneWire/sample/main.cpp create mode 100644 addon/Properties/Makefile create mode 100644 addon/Properties/properties.cpp create mode 100644 addon/Properties/properties.h create mode 100644 addon/Properties/propertiesfile.cpp create mode 100644 addon/Properties/propertiesfile.h create mode 100644 addon/Properties/sample/Makefile create mode 100644 addon/Properties/sample/README create mode 100644 addon/Properties/sample/kernel.cpp create mode 100644 addon/Properties/sample/kernel.h create mode 100644 addon/Properties/sample/main.cpp create mode 100644 addon/Properties/sample/params.txt create mode 100644 addon/README create mode 100644 addon/SDCard/Makefile create mode 100644 addon/SDCard/emmc.cpp create mode 100644 addon/SDCard/emmc.h create mode 100644 addon/SDCard/sample/Makefile create mode 100644 addon/SDCard/sample/README create mode 100644 addon/SDCard/sample/kernel.cpp create mode 100644 addon/SDCard/sample/kernel.h create mode 100644 addon/SDCard/sample/main.cpp create mode 100644 addon/Spectrum/Makefile create mode 100644 addon/Spectrum/SpectrumScreen.cpp create mode 100644 addon/Spectrum/SpectrumScreen.h create mode 100644 addon/Spectrum/sample/BruceLeeScr.h create mode 100644 addon/Spectrum/sample/Makefile create mode 100644 addon/Spectrum/sample/README create mode 100644 addon/Spectrum/sample/kernel.cpp create mode 100644 addon/Spectrum/sample/kernel.h create mode 100644 addon/Spectrum/sample/main.cpp create mode 100644 addon/WS28XX/Makefile create mode 100644 addon/WS28XX/sample/Makefile create mode 100644 addon/WS28XX/sample/README create mode 100644 addon/WS28XX/sample/kernel.cpp create mode 100644 addon/WS28XX/sample/kernel.h create mode 100644 addon/WS28XX/sample/main.cpp create mode 100644 addon/WS28XX/ws28xxstripe.cpp create mode 100644 addon/WS28XX/ws28xxstripe.h create mode 100644 addon/dio/Makefile create mode 100644 addon/dio/sample/Makefile create mode 100644 addon/dio/sample/README create mode 100644 addon/dio/sample/kernel.cpp create mode 100644 addon/dio/sample/kernel.h create mode 100644 addon/dio/sample/main.cpp create mode 100644 addon/dio/spidio.cpp create mode 100644 addon/dio/spidio.h create mode 100644 addon/display/Makefile create mode 100644 addon/display/hd44780device.cpp create mode 100644 addon/display/hd44780device.h create mode 100644 addon/display/sample/Makefile create mode 100644 addon/display/sample/README create mode 100644 addon/display/sample/kernel.cpp create mode 100644 addon/display/sample/kernel.h create mode 100644 addon/display/sample/main.cpp create mode 100644 addon/fatfs/Makefile create mode 100644 addon/fatfs/diskio.cpp create mode 100644 addon/fatfs/diskio.h create mode 100644 addon/fatfs/ff.c create mode 100644 addon/fatfs/ff.h create mode 100644 addon/fatfs/ffconf.h create mode 100644 addon/fatfs/ffunicode.c create mode 100644 addon/fatfs/sample/Makefile create mode 100644 addon/fatfs/sample/README create mode 100644 addon/fatfs/sample/kernel.cpp create mode 100644 addon/fatfs/sample/kernel.h create mode 100644 addon/fatfs/sample/main.cpp create mode 100644 addon/fatfs/syscall.cpp create mode 100644 addon/linux/COPYING create mode 100644 addon/linux/Makefile create mode 100644 addon/linux/README create mode 100644 addon/linux/atomic.h create mode 100644 addon/linux/barrier.h create mode 100644 addon/linux/bug.cpp create mode 100644 addon/linux/bug.h create mode 100644 addon/linux/compiler.h create mode 100644 addon/linux/completion.cpp create mode 100644 addon/linux/completion.h create mode 100644 addon/linux/delay.cpp create mode 100644 addon/linux/delay.h create mode 100644 addon/linux/device.cpp create mode 100644 addon/linux/device.h create mode 100644 addon/linux/dma-mapping.cpp create mode 100644 addon/linux/dma-mapping.h create mode 100644 addon/linux/err.h create mode 100644 addon/linux/errno.h create mode 100644 addon/linux/interrupt.cpp create mode 100644 addon/linux/interrupt.h create mode 100644 addon/linux/io.h create mode 100644 addon/linux/ioport.h create mode 100644 addon/linux/jiffies.h create mode 100644 addon/linux/kern_levels.h create mode 100644 addon/linux/kernel.h create mode 100644 addon/linux/kthread.cpp create mode 100644 addon/linux/kthread.h create mode 100644 addon/linux/linuxdevice.cpp create mode 100644 addon/linux/linuxdevice.h create mode 100644 addon/linux/linuxemu.cpp create mode 100644 addon/linux/linuxemu.h create mode 100644 addon/linux/list.h create mode 100644 addon/linux/module.h create mode 100644 addon/linux/mutex.cpp create mode 100644 addon/linux/mutex.h create mode 100644 addon/linux/pagemap.h create mode 100644 addon/linux/platform_device.cpp create mode 100644 addon/linux/platform_device.h create mode 100644 addon/linux/printk.cpp create mode 100644 addon/linux/printk.h create mode 100644 addon/linux/raspberrypi-firmware.cpp create mode 100644 addon/linux/raspberrypi-firmware.h create mode 100644 addon/linux/rwlock.cpp create mode 100644 addon/linux/rwlock.h create mode 100644 addon/linux/sched.h create mode 100644 addon/linux/semaphore.cpp create mode 100644 addon/linux/semaphore.h create mode 100644 addon/linux/slab.h create mode 100644 addon/linux/spinlock.cpp create mode 100644 addon/linux/spinlock.h create mode 100644 addon/linux/sprintf.cpp create mode 100644 addon/linux/string.h create mode 100644 addon/linux/timer.cpp create mode 100644 addon/linux/timer.h create mode 100644 addon/linux/types.h create mode 100644 addon/linux/uaccess.h create mode 100644 addon/qemu/gpiodemo/Makefile create mode 100644 addon/qemu/gpiodemo/README create mode 100644 addon/qemu/gpiodemo/kernel.cpp create mode 100644 addon/qemu/gpiodemo/kernel.h create mode 100644 addon/qemu/gpiodemo/main.cpp create mode 100644 addon/rtc/Makefile create mode 100644 addon/rtc/mcp7941x.cpp create mode 100644 addon/rtc/mcp7941x.h create mode 100644 addon/rtc/rtc.h create mode 100644 addon/rtc/sample/Makefile create mode 100644 addon/rtc/sample/README create mode 100644 addon/rtc/sample/kernel.cpp create mode 100644 addon/rtc/sample/kernel.h create mode 100644 addon/rtc/sample/main.cpp create mode 100644 addon/sensor/Makefile create mode 100644 addon/sensor/hcsr04.cpp create mode 100644 addon/sensor/hcsr04.h create mode 100644 addon/sensor/mpu6050.cpp create mode 100644 addon/sensor/mpu6050.h create mode 100644 addon/sensor/sample/hcsr04/Makefile create mode 100644 addon/sensor/sample/hcsr04/README create mode 100644 addon/sensor/sample/hcsr04/kernel.cpp create mode 100644 addon/sensor/sample/hcsr04/kernel.h create mode 100644 addon/sensor/sample/hcsr04/main.cpp create mode 100644 addon/sensor/sample/mpu6050/Makefile create mode 100644 addon/sensor/sample/mpu6050/README create mode 100644 addon/sensor/sample/mpu6050/kernel.cpp create mode 100644 addon/sensor/sample/mpu6050/kernel.h create mode 100644 addon/sensor/sample/mpu6050/main.cpp create mode 100644 addon/tftpfileserver/Makefile create mode 100644 addon/tftpfileserver/sample/Makefile create mode 100644 addon/tftpfileserver/sample/README create mode 100644 addon/tftpfileserver/sample/kernel.cpp create mode 100644 addon/tftpfileserver/sample/kernel.h create mode 100644 addon/tftpfileserver/sample/main.cpp create mode 100644 addon/tftpfileserver/tftpfileserver.cpp create mode 100644 addon/tftpfileserver/tftpfileserver.h create mode 100644 addon/ugui/LICENSE.md create mode 100644 addon/ugui/Makefile create mode 100644 addon/ugui/README.md create mode 100644 addon/ugui/sample/Makefile create mode 100644 addon/ugui/sample/README create mode 100644 addon/ugui/sample/controlwindow.cpp create mode 100644 addon/ugui/sample/controlwindow.h create mode 100644 addon/ugui/sample/kernel.cpp create mode 100644 addon/ugui/sample/kernel.h create mode 100644 addon/ugui/sample/main.cpp create mode 100644 addon/ugui/sample/recorder.cpp create mode 100644 addon/ugui/sample/recorder.h create mode 100644 addon/ugui/sample/sampler.S create mode 100644 addon/ugui/sample/sampler.h create mode 100644 addon/ugui/sample/scopeconfig.cpp create mode 100644 addon/ugui/sample/scopeconfig.h create mode 100644 addon/ugui/sample/scopewindow.cpp create mode 100644 addon/ugui/sample/scopewindow.h create mode 100644 addon/ugui/sample/timeline.cpp create mode 100644 addon/ugui/sample/timeline.h create mode 100644 addon/ugui/system.h create mode 100644 addon/ugui/ugui.c create mode 100644 addon/ugui/ugui.h create mode 100644 addon/ugui/ugui_config.h create mode 100644 addon/ugui/uguicpp.cpp create mode 100644 addon/ugui/uguicpp.h create mode 100644 addon/vc4/README create mode 100755 addon/vc4/makeall create mode 100644 addon/vc4/sound/Makefile create mode 100644 addon/vc4/sound/sample/Makefile create mode 100644 addon/vc4/sound/sample/README create mode 100644 addon/vc4/sound/sample/kernel.cpp create mode 100644 addon/vc4/sound/sample/kernel.h create mode 100644 addon/vc4/sound/sample/main.cpp create mode 100644 addon/vc4/sound/sample/sound.h.gz create mode 100644 addon/vc4/sound/vc_vchi_audioserv_defs.h create mode 100644 addon/vc4/sound/vchiqsoundbasedevice.cpp create mode 100644 addon/vc4/sound/vchiqsoundbasedevice.h create mode 100644 addon/vc4/sound/vchiqsounddevice.cpp create mode 100644 addon/vc4/sound/vchiqsounddevice.h create mode 100644 addon/vc4/vchi/connections/connection.h create mode 100644 addon/vc4/vchi/message_drivers/message.h create mode 100644 addon/vc4/vchi/vchi.h create mode 100644 addon/vc4/vchi/vchi_cfg.h create mode 100644 addon/vc4/vchi/vchi_cfg_internal.h create mode 100644 addon/vc4/vchi/vchi_common.h create mode 100644 addon/vc4/vchi/vchi_mh.h create mode 100644 addon/vc4/vchiq/Makefile create mode 100644 addon/vc4/vchiq/vchiq.h create mode 100644 addon/vc4/vchiq/vchiq_2835.h create mode 100644 addon/vc4/vchiq/vchiq_2835_arm.c create mode 100644 addon/vc4/vchiq/vchiq_arm.c create mode 100644 addon/vc4/vchiq/vchiq_arm.h create mode 100644 addon/vc4/vchiq/vchiq_cfg.h create mode 100644 addon/vc4/vchiq/vchiq_connected.c create mode 100644 addon/vc4/vchiq/vchiq_connected.h create mode 100644 addon/vc4/vchiq/vchiq_core.c create mode 100644 addon/vc4/vchiq/vchiq_core.h create mode 100644 addon/vc4/vchiq/vchiq_if.h create mode 100644 addon/vc4/vchiq/vchiq_kern_lib.c create mode 100644 addon/vc4/vchiq/vchiq_killable.h create mode 100644 addon/vc4/vchiq/vchiq_shim.c create mode 100644 addon/vc4/vchiq/vchiq_util.c create mode 100644 addon/vc4/vchiq/vchiq_util.h create mode 100644 addon/vc4/vchiq/vchiqdevice.cpp create mode 100644 addon/vc4/vchiq/vchiqdevice.h create mode 100644 addon/webconsole/Makefile create mode 100644 addon/webconsole/logbuffer.cpp create mode 100644 addon/webconsole/logbuffer.h create mode 100644 addon/webconsole/sample/Makefile create mode 100644 addon/webconsole/sample/README create mode 100644 addon/webconsole/sample/kernel.cpp create mode 100644 addon/webconsole/sample/kernel.h create mode 100644 addon/webconsole/sample/main.cpp create mode 100644 addon/webconsole/webconsole.cpp create mode 100644 addon/webconsole/webconsole.h create mode 100644 app/Rules.mk create mode 100644 app/lib/template/Makefile create mode 100644 app/lib/template/myclass.cpp create mode 100644 app/lib/template/myclass.h create mode 100755 app/makeall create mode 100644 app/template/Makefile create mode 100644 app/template/kernel.cpp create mode 100644 app/template/kernel.h create mode 100644 app/template/main.cpp create mode 100644 boot/.gitignore create mode 100644 boot/Makefile create mode 100644 circle.ld create mode 100644 doc/classes.txt create mode 100644 doc/cmdline.txt create mode 100644 doc/debug.txt create mode 100644 doc/eclipse-support.txt create mode 100644 doc/issues.txt create mode 100644 doc/keyboard.txt create mode 100644 doc/memorymap.txt create mode 100644 doc/multicore.txt create mode 100644 doc/qemu.txt create mode 100644 doc/realtime.txt create mode 100644 doc/screen.txt create mode 100644 doc/stdlib-support.txt create mode 100644 include/assert.h create mode 100644 include/circle/actled.h create mode 100644 include/circle/alloc.h create mode 100644 include/circle/armv6mmu.h create mode 100644 include/circle/bcm2835.h create mode 100644 include/circle/bcm2835int.h create mode 100644 include/circle/bcm2836.h create mode 100644 include/circle/bcmframebuffer.h create mode 100644 include/circle/bcmmailbox.h create mode 100644 include/circle/bcmpropertytags.h create mode 100644 include/circle/bcmrandom.h create mode 100644 include/circle/bt/bcmvendor.h create mode 100644 include/circle/bt/bluetooth.h create mode 100644 include/circle/bt/btdevicemanager.h create mode 100644 include/circle/bt/bthcilayer.h create mode 100644 include/circle/bt/btinquiryresults.h create mode 100644 include/circle/bt/btlogicallayer.h create mode 100644 include/circle/bt/btqueue.h create mode 100644 include/circle/bt/btsubsystem.h create mode 100644 include/circle/bt/bttask.h create mode 100644 include/circle/bt/bttransportlayer.h create mode 100644 include/circle/bt/btuarttransport.h create mode 100644 include/circle/chargenerator.h create mode 100644 include/circle/classallocator.h create mode 100644 include/circle/cputhrottle.h create mode 100644 include/circle/debug.h create mode 100644 include/circle/device.h create mode 100644 include/circle/devicenameservice.h create mode 100644 include/circle/dmachannel.h create mode 100644 include/circle/exception.h create mode 100644 include/circle/exceptionhandler.h create mode 100644 include/circle/exceptionstub.h create mode 100644 include/circle/fs/fat/fat.h create mode 100644 include/circle/fs/fat/fatcache.h create mode 100644 include/circle/fs/fat/fatdir.h create mode 100644 include/circle/fs/fat/fatfs.h create mode 100644 include/circle/fs/fat/fatfsdef.h create mode 100644 include/circle/fs/fat/fatinfo.h create mode 100644 include/circle/fs/fsdef.h create mode 100644 include/circle/fs/partition.h create mode 100644 include/circle/fs/partitionmanager.h create mode 100644 include/circle/gpioclock.h create mode 100644 include/circle/gpiomanager.h create mode 100644 include/circle/gpiopin.h create mode 100644 include/circle/gpiopinfiq.h create mode 100644 include/circle/i2cmaster.h create mode 100644 include/circle/i2cslave.h create mode 100644 include/circle/i2ssoundbasedevice.h create mode 100644 include/circle/input/console.h create mode 100644 include/circle/input/keyboardbehaviour.h create mode 100644 include/circle/input/keyboardbuffer.h create mode 100644 include/circle/input/keymap.h create mode 100644 include/circle/input/linediscipline.h create mode 100644 include/circle/input/mousebehaviour.h create mode 100644 include/circle/input/touchscreen.h create mode 100644 include/circle/interrupt.h create mode 100644 include/circle/koptions.h create mode 100644 include/circle/logger.h create mode 100644 include/circle/machineinfo.h create mode 100644 include/circle/macros.h create mode 100644 include/circle/memio.h create mode 100644 include/circle/memory.h create mode 100644 include/circle/memorymap.h create mode 100644 include/circle/multicore.h create mode 100644 include/circle/net/arphandler.h create mode 100644 include/circle/net/checksumcalculator.h create mode 100644 include/circle/net/dhcpclient.h create mode 100644 include/circle/net/dnsclient.h create mode 100644 include/circle/net/http.h create mode 100644 include/circle/net/httpclient.h create mode 100644 include/circle/net/httpdaemon.h create mode 100644 include/circle/net/icmphandler.h create mode 100644 include/circle/net/in.h create mode 100644 include/circle/net/ipaddress.h create mode 100644 include/circle/net/linklayer.h create mode 100644 include/circle/net/mqtt.h create mode 100644 include/circle/net/mqttclient.h create mode 100644 include/circle/net/mqttreceivepacket.h create mode 100644 include/circle/net/mqttsendpacket.h create mode 100644 include/circle/net/netconfig.h create mode 100644 include/circle/net/netconnection.h create mode 100644 include/circle/net/netdevlayer.h create mode 100644 include/circle/net/netqueue.h create mode 100644 include/circle/net/netsocket.h create mode 100644 include/circle/net/netsubsystem.h create mode 100644 include/circle/net/nettask.h create mode 100644 include/circle/net/networklayer.h create mode 100644 include/circle/net/ntpclient.h create mode 100644 include/circle/net/ntpdaemon.h create mode 100644 include/circle/net/retransmissionqueue.h create mode 100644 include/circle/net/retranstimeoutcalc.h create mode 100644 include/circle/net/routecache.h create mode 100644 include/circle/net/socket.h create mode 100644 include/circle/net/syslogdaemon.h create mode 100644 include/circle/net/tcpconnection.h create mode 100644 include/circle/net/tcprejector.h create mode 100644 include/circle/net/tftpdaemon.h create mode 100644 include/circle/net/transportlayer.h create mode 100644 include/circle/net/udpconnection.h create mode 100644 include/circle/nulldevice.h create mode 100644 include/circle/pagetable.h create mode 100644 include/circle/ptrarray.h create mode 100644 include/circle/ptrlist.h create mode 100644 include/circle/pwmoutput.h create mode 100644 include/circle/pwmsoundbasedevice.h create mode 100644 include/circle/pwmsounddevice.h create mode 100644 include/circle/sched/scheduler.h create mode 100644 include/circle/sched/synchronizationevent.h create mode 100644 include/circle/sched/task.h create mode 100644 include/circle/sched/taskswitch.h create mode 100644 include/circle/screen.h create mode 100644 include/circle/serial.h create mode 100644 include/circle/soundbasedevice.h create mode 100644 include/circle/spimaster.h create mode 100644 include/circle/spimasteraux.h create mode 100644 include/circle/spimasterdma.h create mode 100644 include/circle/spinlock.h create mode 100644 include/circle/startup.h create mode 100644 include/circle/stdarg.h create mode 100644 include/circle/string.h create mode 100644 include/circle/synchronize.h create mode 100644 include/circle/sysconfig.h create mode 100644 include/circle/time.h create mode 100644 include/circle/timer.h create mode 100644 include/circle/tracer.h create mode 100644 include/circle/types.h create mode 100644 include/circle/usb/dwhci.h create mode 100644 include/circle/usb/dwhcidevice.h create mode 100644 include/circle/usb/dwhciframeschednper.h create mode 100644 include/circle/usb/dwhciframeschednsplit.h create mode 100644 include/circle/usb/dwhciframeschedper.h create mode 100644 include/circle/usb/dwhciframescheduler.h create mode 100644 include/circle/usb/dwhciregister.h create mode 100644 include/circle/usb/dwhcirootport.h create mode 100644 include/circle/usb/dwhcixactqueue.h create mode 100644 include/circle/usb/dwhcixferstagedata.h create mode 100644 include/circle/usb/lan7800.h create mode 100644 include/circle/usb/macaddress.h create mode 100644 include/circle/usb/netdevice.h create mode 100644 include/circle/usb/smsc951x.h create mode 100644 include/circle/usb/usb.h create mode 100644 include/circle/usb/usbaudio.h create mode 100644 include/circle/usb/usbbluetooth.h create mode 100644 include/circle/usb/usbcdcethernet.h create mode 100644 include/circle/usb/usbconfigparser.h create mode 100644 include/circle/usb/usbdevice.h create mode 100644 include/circle/usb/usbdevicefactory.h create mode 100644 include/circle/usb/usbendpoint.h create mode 100644 include/circle/usb/usbfunction.h create mode 100644 include/circle/usb/usbgamepad.h create mode 100644 include/circle/usb/usbhid.h create mode 100644 include/circle/usb/usbhiddevice.h create mode 100644 include/circle/usb/usbhostcontroller.h create mode 100644 include/circle/usb/usbhub.h create mode 100644 include/circle/usb/usbkeyboard.h create mode 100644 include/circle/usb/usbmassdevice.h create mode 100644 include/circle/usb/usbmidi.h create mode 100644 include/circle/usb/usbmouse.h create mode 100644 include/circle/usb/usbprinter.h create mode 100644 include/circle/usb/usbrequest.h create mode 100644 include/circle/usb/usbstandardhub.h create mode 100644 include/circle/usb/usbstring.h create mode 100644 include/circle/usertimer.h create mode 100644 include/circle/util.h create mode 100644 include/circle/version.h create mode 100644 include/circle/virtualgpiopin.h create mode 100644 lib/Makefile create mode 100644 lib/actled.cpp create mode 100644 lib/alloc.cpp create mode 100644 lib/assert.cpp create mode 100644 lib/bcmframebuffer.cpp create mode 100644 lib/bcmmailbox.cpp create mode 100644 lib/bcmpropertytags.cpp create mode 100644 lib/bcmrandom.cpp create mode 100644 lib/bt/.gitignore create mode 100644 lib/bt/BCM43430A1.hcd create mode 100644 lib/bt/LICENCE.broadcom_bcm43xx create mode 100644 lib/bt/Makefile create mode 100644 lib/bt/btdevicemanager.cpp create mode 100644 lib/bt/bthcilayer.cpp create mode 100644 lib/bt/btinquiryresults.cpp create mode 100644 lib/bt/btlogicallayer.cpp create mode 100644 lib/bt/btqueue.cpp create mode 100644 lib/bt/btsubsystem.cpp create mode 100644 lib/bt/bttask.cpp create mode 100644 lib/bt/btuarttransport.cpp create mode 100644 lib/bt/converttool.c create mode 100644 lib/cache-v7.S create mode 100644 lib/chargenerator.cpp create mode 100644 lib/classallocator.cpp create mode 100644 lib/cputhrottle.cpp create mode 100644 lib/debug.cpp create mode 100644 lib/delayloop.S create mode 100644 lib/device.cpp create mode 100644 lib/devicenameservice.cpp create mode 100644 lib/dmachannel.cpp create mode 100644 lib/exceptionhandler.cpp create mode 100644 lib/exceptionstub.S create mode 100644 lib/font.h create mode 100644 lib/fs/Makefile create mode 100644 lib/fs/fat/Makefile create mode 100644 lib/fs/fat/fat.cpp create mode 100644 lib/fs/fat/fatcache.cpp create mode 100644 lib/fs/fat/fatdir.cpp create mode 100644 lib/fs/fat/fatfs.cpp create mode 100644 lib/fs/fat/fatinfo.cpp create mode 100644 lib/fs/partition.cpp create mode 100644 lib/fs/partitionmanager.cpp create mode 100644 lib/gpioclock.cpp create mode 100644 lib/gpiomanager.cpp create mode 100644 lib/gpiopin.cpp create mode 100644 lib/gpiopinfiq.cpp create mode 100644 lib/i2cmaster.cpp create mode 100644 lib/i2cslave.cpp create mode 100644 lib/i2ssoundbasedevice.cpp create mode 100644 lib/input/Makefile create mode 100644 lib/input/console.cpp create mode 100644 lib/input/keyboardbehaviour.cpp create mode 100644 lib/input/keyboardbuffer.cpp create mode 100644 lib/input/keymap.cpp create mode 100644 lib/input/keymap_de.h create mode 100644 lib/input/keymap_es.h create mode 100644 lib/input/keymap_fr.h create mode 100644 lib/input/keymap_it.h create mode 100644 lib/input/keymap_uk.h create mode 100644 lib/input/keymap_us.h create mode 100644 lib/input/linediscipline.cpp create mode 100644 lib/input/mousebehaviour.cpp create mode 100644 lib/input/touchscreen.cpp create mode 100644 lib/interrupt.cpp create mode 100644 lib/koptions.cpp create mode 100644 lib/libhelper.cpp create mode 100644 lib/libstub.S create mode 100644 lib/logger.cpp create mode 100644 lib/machineinfo.cpp create mode 100644 lib/memory.cpp create mode 100644 lib/multicore.cpp create mode 100644 lib/net/Makefile create mode 100644 lib/net/arphandler.cpp create mode 100644 lib/net/checksumcalculator.cpp create mode 100644 lib/net/dhcpclient.cpp create mode 100644 lib/net/dnsclient.cpp create mode 100644 lib/net/httpclient.cpp create mode 100644 lib/net/httpdaemon.cpp create mode 100644 lib/net/icmphandler.cpp create mode 100644 lib/net/ipaddress.cpp create mode 100644 lib/net/linklayer.cpp create mode 100644 lib/net/mqttclient.cpp create mode 100644 lib/net/mqttreceivepacket.cpp create mode 100644 lib/net/mqttsendpacket.cpp create mode 100644 lib/net/netconfig.cpp create mode 100644 lib/net/netconnection.cpp create mode 100644 lib/net/netdevlayer.cpp create mode 100644 lib/net/netqueue.cpp create mode 100644 lib/net/netsocket.cpp create mode 100644 lib/net/netsubsystem.cpp create mode 100644 lib/net/nettask.cpp create mode 100644 lib/net/networklayer.cpp create mode 100644 lib/net/ntpclient.cpp create mode 100644 lib/net/ntpdaemon.cpp create mode 100644 lib/net/retransmissionqueue.cpp create mode 100644 lib/net/retranstimeoutcalc.cpp create mode 100644 lib/net/routecache.cpp create mode 100644 lib/net/socket.cpp create mode 100644 lib/net/syslogdaemon.cpp create mode 100644 lib/net/tcpconnection.cpp create mode 100644 lib/net/tcprejector.cpp create mode 100644 lib/net/tftpdaemon.cpp create mode 100644 lib/net/transportlayer.cpp create mode 100644 lib/net/udpconnection.cpp create mode 100644 lib/new.cpp create mode 100644 lib/nulldevice.cpp create mode 100644 lib/pagetable.cpp create mode 100644 lib/ptrarray.cpp create mode 100644 lib/ptrlist.cpp create mode 100644 lib/purecall.cpp create mode 100644 lib/pwmoutput.cpp create mode 100644 lib/pwmsoundbasedevice.cpp create mode 100644 lib/pwmsounddevice.cpp create mode 100644 lib/sched/Makefile create mode 100644 lib/sched/scheduler.cpp create mode 100644 lib/sched/synchronizationevent.cpp create mode 100644 lib/sched/task.cpp create mode 100644 lib/sched/taskswitch.S create mode 100644 lib/screen.cpp create mode 100644 lib/serial.cpp create mode 100644 lib/soundbasedevice.cpp create mode 100644 lib/spimaster.cpp create mode 100644 lib/spimasteraux.cpp create mode 100644 lib/spimasterdma.cpp create mode 100644 lib/spinlock.cpp create mode 100644 lib/startup.S create mode 100644 lib/string.cpp create mode 100644 lib/synchronize.cpp create mode 100644 lib/sysinit.cpp create mode 100644 lib/time.cpp create mode 100644 lib/timer.cpp create mode 100644 lib/tracer.cpp create mode 100644 lib/usb/Makefile create mode 100644 lib/usb/README create mode 100644 lib/usb/dwhcidevice.cpp create mode 100644 lib/usb/dwhciframeschednper.cpp create mode 100644 lib/usb/dwhciframeschednsplit.cpp create mode 100644 lib/usb/dwhciframeschedper.cpp create mode 100644 lib/usb/dwhciregister.cpp create mode 100644 lib/usb/dwhcirootport.cpp create mode 100644 lib/usb/dwhcixactqueue.cpp create mode 100644 lib/usb/dwhcixferstagedata.cpp create mode 100644 lib/usb/lan7800.cpp create mode 100644 lib/usb/macaddress.cpp create mode 100644 lib/usb/netdevice.cpp create mode 100644 lib/usb/smsc951x.cpp create mode 100644 lib/usb/usbbluetooth.cpp create mode 100644 lib/usb/usbcdcethernet.cpp create mode 100644 lib/usb/usbconfigparser.cpp create mode 100644 lib/usb/usbdevice.cpp create mode 100644 lib/usb/usbdevicefactory.cpp create mode 100644 lib/usb/usbendpoint.cpp create mode 100644 lib/usb/usbfunction.cpp create mode 100644 lib/usb/usbgamepad.cpp create mode 100644 lib/usb/usbhiddevice.cpp create mode 100644 lib/usb/usbhostcontroller.cpp create mode 100644 lib/usb/usbkeyboard.cpp create mode 100644 lib/usb/usbmassdevice.cpp create mode 100644 lib/usb/usbmidi.cpp create mode 100644 lib/usb/usbmouse.cpp create mode 100644 lib/usb/usbprinter.cpp create mode 100644 lib/usb/usbrequest.cpp create mode 100644 lib/usb/usbstandardhub.cpp create mode 100644 lib/usb/usbstring.cpp create mode 100644 lib/usertimer.cpp create mode 100644 lib/util.cpp create mode 100644 lib/util_fast.S create mode 100644 lib/virtualgpiopin.cpp create mode 100755 makeall create mode 100755 makedoc create mode 100644 sample/01-gpiosimple/Makefile create mode 100644 sample/01-gpiosimple/README create mode 100644 sample/01-gpiosimple/kernel.cpp create mode 100644 sample/01-gpiosimple/kernel.h create mode 100644 sample/01-gpiosimple/main.cpp create mode 100644 sample/02-screenpixel/Makefile create mode 100644 sample/02-screenpixel/README create mode 100644 sample/02-screenpixel/kernel.cpp create mode 100644 sample/02-screenpixel/kernel.h create mode 100644 sample/02-screenpixel/main.cpp create mode 100644 sample/03-screentext/Makefile create mode 100644 sample/03-screentext/README create mode 100644 sample/03-screentext/kernel.cpp create mode 100644 sample/03-screentext/kernel.h create mode 100644 sample/03-screentext/main.cpp create mode 100644 sample/04-timer/Makefile create mode 100644 sample/04-timer/README create mode 100644 sample/04-timer/kernel.cpp create mode 100644 sample/04-timer/kernel.h create mode 100644 sample/04-timer/main.cpp create mode 100644 sample/05-usbsimple/Makefile create mode 100644 sample/05-usbsimple/README create mode 100644 sample/05-usbsimple/kernel.cpp create mode 100644 sample/05-usbsimple/kernel.h create mode 100644 sample/05-usbsimple/main.cpp create mode 100644 sample/06-usbethernet/Makefile create mode 100644 sample/06-usbethernet/README create mode 100644 sample/06-usbethernet/kernel.cpp create mode 100644 sample/06-usbethernet/kernel.h create mode 100644 sample/06-usbethernet/main.cpp create mode 100644 sample/07-usbstorage/Makefile create mode 100644 sample/07-usbstorage/README create mode 100644 sample/07-usbstorage/kernel.cpp create mode 100644 sample/07-usbstorage/kernel.h create mode 100644 sample/07-usbstorage/main.cpp create mode 100644 sample/08-usbkeyboard/Makefile create mode 100644 sample/08-usbkeyboard/README create mode 100644 sample/08-usbkeyboard/kernel.cpp create mode 100644 sample/08-usbkeyboard/kernel.h create mode 100644 sample/08-usbkeyboard/main.cpp create mode 100644 sample/09-softserial/Makefile create mode 100644 sample/09-softserial/README create mode 100644 sample/09-softserial/kernel.cpp create mode 100644 sample/09-softserial/kernel.h create mode 100644 sample/09-softserial/main.cpp create mode 100644 sample/09-softserial/softserial.cpp create mode 100644 sample/09-softserial/softserial.h create mode 100644 sample/10-usbmouse/Makefile create mode 100644 sample/10-usbmouse/README create mode 100644 sample/10-usbmouse/kernel.cpp create mode 100644 sample/10-usbmouse/kernel.h create mode 100644 sample/10-usbmouse/main.cpp create mode 100644 sample/11-gpioclock/Makefile create mode 100644 sample/11-gpioclock/README create mode 100644 sample/11-gpioclock/kernel.cpp create mode 100644 sample/11-gpioclock/kernel.h create mode 100644 sample/11-gpioclock/main.cpp create mode 100644 sample/11-gpioclock/sampler.S create mode 100644 sample/11-gpioclock/sampler.h create mode 100644 sample/12-pwmsound/Makefile create mode 100644 sample/12-pwmsound/README create mode 100644 sample/12-pwmsound/kernel.cpp create mode 100644 sample/12-pwmsound/kernel.h create mode 100644 sample/12-pwmsound/main.cpp create mode 100644 sample/12-pwmsound/sound.h.gz create mode 100644 sample/13-pwmoutput/Makefile create mode 100644 sample/13-pwmoutput/README create mode 100644 sample/13-pwmoutput/kernel.cpp create mode 100644 sample/13-pwmoutput/kernel.h create mode 100644 sample/13-pwmoutput/main.cpp create mode 100644 sample/14-usbprinter/Makefile create mode 100644 sample/14-usbprinter/README create mode 100644 sample/14-usbprinter/kernel.cpp create mode 100644 sample/14-usbprinter/kernel.h create mode 100644 sample/14-usbprinter/main.cpp create mode 100644 sample/15-files/Makefile create mode 100644 sample/15-files/README create mode 100644 sample/15-files/kernel.cpp create mode 100644 sample/15-files/kernel.h create mode 100644 sample/15-files/main.cpp create mode 100644 sample/16-i2cping/Makefile create mode 100644 sample/16-i2cping/README create mode 100644 sample/16-i2cping/i2cping.h create mode 100644 sample/16-i2cping/master/Makefile create mode 100644 sample/16-i2cping/master/i2cechoclient.cpp create mode 100644 sample/16-i2cping/master/i2cechoclient.h create mode 100644 sample/16-i2cping/master/kernel.cpp create mode 100644 sample/16-i2cping/master/kernel.h create mode 100644 sample/16-i2cping/master/main.cpp create mode 100644 sample/16-i2cping/slave/Makefile create mode 100644 sample/16-i2cping/slave/i2cechoserver.cpp create mode 100644 sample/16-i2cping/slave/i2cechoserver.h create mode 100644 sample/16-i2cping/slave/kernel.cpp create mode 100644 sample/16-i2cping/slave/kernel.h create mode 100644 sample/16-i2cping/slave/main.cpp create mode 100644 sample/17-fractal/Makefile create mode 100644 sample/17-fractal/README create mode 100644 sample/17-fractal/kernel.cpp create mode 100644 sample/17-fractal/kernel.h create mode 100644 sample/17-fractal/main.cpp create mode 100644 sample/17-fractal/mandelbrot.cpp create mode 100644 sample/17-fractal/mandelbrot.h create mode 100644 sample/18-ntptime/Makefile create mode 100644 sample/18-ntptime/README create mode 100644 sample/18-ntptime/kernel.cpp create mode 100644 sample/18-ntptime/kernel.h create mode 100644 sample/18-ntptime/main.cpp create mode 100644 sample/19-tasks/Makefile create mode 100644 sample/19-tasks/README create mode 100644 sample/19-tasks/kernel.cpp create mode 100644 sample/19-tasks/kernel.h create mode 100644 sample/19-tasks/ledtask.cpp create mode 100644 sample/19-tasks/ledtask.h create mode 100644 sample/19-tasks/main.cpp create mode 100644 sample/19-tasks/primetask.cpp create mode 100644 sample/19-tasks/primetask.h create mode 100644 sample/19-tasks/screentask.cpp create mode 100644 sample/19-tasks/screentask.h create mode 100644 sample/20-tcpsimple/Makefile create mode 100644 sample/20-tcpsimple/README create mode 100644 sample/20-tcpsimple/echoserver.cpp create mode 100644 sample/20-tcpsimple/echoserver.h create mode 100644 sample/20-tcpsimple/kernel.cpp create mode 100644 sample/20-tcpsimple/kernel.h create mode 100644 sample/20-tcpsimple/main.cpp create mode 100644 sample/21-webserver/Makefile create mode 100644 sample/21-webserver/README create mode 100644 sample/21-webserver/converttool.c create mode 100644 sample/21-webserver/favicon.ico create mode 100644 sample/21-webserver/index.html create mode 100644 sample/21-webserver/kernel.cpp create mode 100644 sample/21-webserver/kernel.h create mode 100644 sample/21-webserver/ledoff.png create mode 100644 sample/21-webserver/ledon.png create mode 100644 sample/21-webserver/main.cpp create mode 100644 sample/21-webserver/style.css create mode 100644 sample/21-webserver/webserver.cpp create mode 100644 sample/21-webserver/webserver.h create mode 100644 sample/22-btsimple/Makefile create mode 100644 sample/22-btsimple/README create mode 100644 sample/22-btsimple/kernel.cpp create mode 100644 sample/22-btsimple/kernel.h create mode 100644 sample/22-btsimple/main.cpp create mode 100644 sample/23-spisimple/Makefile create mode 100644 sample/23-spisimple/README create mode 100644 sample/23-spisimple/kernel.cpp create mode 100644 sample/23-spisimple/kernel.h create mode 100644 sample/23-spisimple/main.cpp create mode 100644 sample/24-hwrandom/Makefile create mode 100644 sample/24-hwrandom/README create mode 100644 sample/24-hwrandom/kernel.cpp create mode 100644 sample/24-hwrandom/kernel.h create mode 100644 sample/24-hwrandom/main.cpp create mode 100644 sample/25-spidma/Makefile create mode 100644 sample/25-spidma/README create mode 100644 sample/25-spidma/kernel.cpp create mode 100644 sample/25-spidma/kernel.h create mode 100644 sample/25-spidma/main.cpp create mode 100644 sample/26-cpustress/Makefile create mode 100644 sample/26-cpustress/README create mode 100644 sample/26-cpustress/kernel.cpp create mode 100644 sample/26-cpustress/kernel.h create mode 100644 sample/26-cpustress/main.cpp create mode 100644 sample/26-cpustress/mandelbrot.cpp create mode 100644 sample/26-cpustress/mandelbrot.h create mode 100644 sample/26-cpustress/temptask.cpp create mode 100644 sample/26-cpustress/temptask.h create mode 100644 sample/27-usbgamepad/Makefile create mode 100644 sample/27-usbgamepad/README create mode 100644 sample/27-usbgamepad/kernel.cpp create mode 100644 sample/27-usbgamepad/kernel.h create mode 100644 sample/27-usbgamepad/main.cpp create mode 100644 sample/28-touchscreen/Makefile create mode 100644 sample/28-touchscreen/README create mode 100644 sample/28-touchscreen/kernel.cpp create mode 100644 sample/28-touchscreen/kernel.h create mode 100644 sample/28-touchscreen/main.cpp create mode 100644 sample/29-miniorgan/Makefile create mode 100644 sample/29-miniorgan/README create mode 100644 sample/29-miniorgan/kernel.cpp create mode 100644 sample/29-miniorgan/kernel.h create mode 100644 sample/29-miniorgan/main.cpp create mode 100644 sample/29-miniorgan/miniorgan.cpp create mode 100644 sample/29-miniorgan/miniorgan.h create mode 100644 sample/30-gpiofiq/Makefile create mode 100644 sample/30-gpiofiq/README create mode 100644 sample/30-gpiofiq/kernel.cpp create mode 100644 sample/30-gpiofiq/kernel.h create mode 100644 sample/30-gpiofiq/main.cpp create mode 100644 sample/31-webclient/Makefile create mode 100644 sample/31-webclient/README create mode 100644 sample/31-webclient/htmlscanner.cpp create mode 100644 sample/31-webclient/htmlscanner.h create mode 100644 sample/31-webclient/kernel.cpp create mode 100644 sample/31-webclient/kernel.h create mode 100644 sample/31-webclient/main.cpp create mode 100644 sample/32-i2cshell/Makefile create mode 100644 sample/32-i2cshell/README create mode 100644 sample/32-i2cshell/i2cshell.cpp create mode 100644 sample/32-i2cshell/i2cshell.h create mode 100644 sample/32-i2cshell/kernel.cpp create mode 100644 sample/32-i2cshell/kernel.h create mode 100644 sample/32-i2cshell/main.cpp create mode 100644 sample/33-syslog/Makefile create mode 100644 sample/33-syslog/README create mode 100644 sample/33-syslog/kernel.cpp create mode 100644 sample/33-syslog/kernel.h create mode 100644 sample/33-syslog/main.cpp create mode 100644 sample/33-syslog/syslogserver.c create mode 100644 sample/34-sounddevices/Makefile create mode 100644 sample/34-sounddevices/README create mode 100644 sample/34-sounddevices/config.h create mode 100644 sample/34-sounddevices/kernel.cpp create mode 100644 sample/34-sounddevices/kernel.h create mode 100644 sample/34-sounddevices/main.cpp create mode 100644 sample/34-sounddevices/oscillator.cpp create mode 100644 sample/34-sounddevices/oscillator.h create mode 100644 sample/34-sounddevices/synthmodule.h create mode 100644 sample/35-mqttclient/Makefile create mode 100644 sample/35-mqttclient/README create mode 100644 sample/35-mqttclient/kernel.cpp create mode 100644 sample/35-mqttclient/kernel.h create mode 100644 sample/35-mqttclient/main.cpp create mode 100644 sample/35-mqttclient/mqttsampleclient.cpp create mode 100644 sample/35-mqttclient/mqttsampleclient.h create mode 100644 sample/36-softpwm/Makefile create mode 100644 sample/36-softpwm/README create mode 100644 sample/36-softpwm/kernel.cpp create mode 100644 sample/36-softpwm/kernel.h create mode 100644 sample/36-softpwm/main.cpp create mode 100644 sample/36-softpwm/softpwmoutput.cpp create mode 100644 sample/36-softpwm/softpwmoutput.h create mode 100644 sample/README create mode 100644 sample/Rules.mk create mode 100755 sample/makeall create mode 100755 sample/makelatest create mode 100644 tools/bootloader/BCM2835.h create mode 100644 tools/bootloader/BCM2836.h create mode 100644 tools/bootloader/Makefile create mode 100644 tools/bootloader/README create mode 100644 tools/bootloader/bootloader07.c create mode 100644 tools/bootloader/loader create mode 100644 tools/bootloader/periph.c create mode 100644 tools/bootloader/vectors.s create mode 100644 tools/flasher.py create mode 100644 tools/reboottool.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..b62bcbfce --- /dev/null +++ b/.gitignore @@ -0,0 +1,89 @@ +# GIT Ignore + +# Mac OS X +# ---------------------------------------------- +.DS_Store +.AppleDouble +.LSOverride +# Icon must end with two \r +Icon + + +# Thumbnails +._* +# Files that might appear on external disk +.Spotlight-V100 +.Trashes +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Linux +# ---------------------------------------------- +*~ +# KDE directory preferences +.directory + +# Windows +# ---------------------------------------------- +# Windows image file caches +Thumbs.db +ehthumbs.db +# Folder config file +Desktop.ini +# Recycle Bin used on file shares +$RECYCLE.BIN/ +# Windows Installer files +*.cab +*.msi +*.msm +*.msp +# Windows shortcuts +*.lnk + +# C/C++ +# ---------------------------------------------- +# Object files +*.elf +*.o +*.ko +*.lo +*.obj +*.slo +# Precompiled Headers +*.gch +*.pch +# Libraries +*.a +*.la +*.lai +*.lib +*.lo +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Circle +# ---------------------------------------------- +*.img +*.lst +*.map +Config.mk + +# Directories +# ---------------------------------------------- +doc/html/ +test/ +tmp/ diff --git a/CREDITS b/CREDITS new file mode 100644 index 000000000..9f87f42e7 --- /dev/null +++ b/CREDITS @@ -0,0 +1,48 @@ +CREDITS + +To whom +For what + +Aurelien Bidon +Improving build and .git support + +tufty +Architectural advise + +Jose Luis Sanchez +Spanish keymap +Support and testing while searching for a full-speed interrupt interval bug +Testing while fixing an USB freeze bug +Hint how to improve le2be* functions using GCC builtins +Enhancing class CBcmFrameBuffer +Providing Spectrum screen emulator code +Testing while adding support for USB full-speed hubs (compound devices) +Providing fixes for using u-boot +Fixing issues for u-boot support +Support while adding CPU clock rate management and sample/26-cpustress +Testing while adding USB transaction queueing and SOF interrupt support +Updating addon/fatfs/ module + +Arjan van Vught +Support while adding Raspberry Pi 3 support +Testing and improving SPI support +Providing code for WS28XX LED stripes +Providing CString::ftoa() + +Rogier Wolff +Helping to get spi_dio running and to improve the SPI master driver +Hardware support for testing MCP7941x and spi_dio drivers + +Joshua Otto +Providing support for framebuffers where pitch != width * bytes per pixel +USB Audio Class MIDI device support + +Stephan Muehlstrasser +Correcting problems for building with clang +Idea for sample/30-gpiofiq + +Marco Maccaferri +USB HID class gamepad driver + +@Matheus-Garbelini +Adding bootloader support and tools diff --git a/Doxyfile b/Doxyfile new file mode 100644 index 000000000..23e3ff340 --- /dev/null +++ b/Doxyfile @@ -0,0 +1,2331 @@ +# Doxyfile 1.8.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = ISO-8859-1 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "Circle" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = "C++ bare metal environment for Raspberry Pi" + +# With the PROJECT_LOGO tag one can specify an logo or icon that is included in +# the documentation. The maximum height of the logo should not exceed 55 pixels +# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo +# to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ../doc + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a +# new page for each member. If set to NO, the documentation of a member will be +# part of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by by putting a % sign in front of the word +# or globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO these classes will be included in the various overviews. This option has +# no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the +# todo list. This list is created by putting \todo commands in the +# documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the +# test list. This list is created by putting \test commands in the +# documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES the list +# will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO doxygen will only warn about wrong or incomplete parameter +# documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = ISO-8859-1 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER ) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES, then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefor more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra stylesheet files is of importance (e.g. the last +# stylesheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the stylesheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler ( hhc.exe). If non-empty +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated ( +# YES) or that it should be included in the master .chm file ( NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated ( +# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using prerendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /