├── Chapter03 └── clubstatus │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── club.cpp │ ├── club.h │ ├── clubstatus.cpp │ ├── clubstatus.service │ ├── config.ini │ ├── datahandler.h │ ├── htdocs │ └── index.html │ ├── httprequestfactory.h │ ├── listener.cpp │ ├── listener.h │ ├── statushandler.h │ └── wiring │ ├── wiringPi.cpp │ ├── wiringPi.h │ ├── wiringPiI2C.cpp │ └── wiringPiI2C.h ├── Chapter04 └── chip_tester │ ├── Makefile │ └── src │ ├── chip_tester.cpp │ ├── serialcomm.cpp │ └── serialcomm.h ├── Chapter05 └── esp8266 │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── Makefile-user.mk │ ├── README.md │ ├── app │ ├── base_module.cpp │ ├── base_module.h │ ├── bme280_module.cpp │ ├── bme280_module.h │ ├── co2_module.cpp │ ├── co2_module.h │ ├── dht_module.cpp │ ├── dht_module.h │ ├── io_module.cpp │ ├── io_module.h │ ├── jura_module.cpp │ ├── jura_module.h │ ├── juraterm_module.cpp │ ├── juraterm_module.h │ ├── main.cpp │ ├── motion_module.cpp │ ├── motion_module.h │ ├── ota_core.cpp │ ├── ota_core.h │ ├── plant_module.cpp │ ├── plant_module.h │ ├── pwm_module.cpp │ ├── pwm_module.h │ ├── switch_module.cpp │ ├── switch_module.h │ ├── thp_module.cpp │ └── thp_module.h │ ├── builds │ └── ota_unified.bin │ ├── files │ ├── esp8266.client.crt.binary │ ├── esp8266.client.key.binary │ └── index.html │ ├── include │ ├── ssl │ │ ├── cert.h │ │ └── private_key.h │ └── user_config.h │ ├── kicad │ ├── bme280.lib │ ├── mh-z19.pretty │ │ └── MH-Z19.kicad_mod │ ├── oshw.pretty │ │ ├── oshw.kicad_mod │ │ └── oshw_flip_small.kicad_mod │ ├── pwm_analogue_controller-cache.lib │ ├── pwm_analogue_controller-rescue.lib │ ├── pwm_analogue_controller.kicad_pcb │ ├── pwm_analogue_controller.pro │ ├── pwm_analogue_controller.sch │ ├── pwm_analogue_controller_v11_00.jpg │ └── v2.0 │ │ ├── bme280.lib │ │ ├── mh-z19.pretty │ │ └── MH-Z19.kicad_mod │ │ ├── oshw.pretty │ │ ├── oshw.kicad_mod │ │ └── oshw_flip_small.kicad_mod │ │ ├── pwm_analogue_controller-cache.lib │ │ ├── pwm_analogue_controller-rescue.lib │ │ ├── pwm_analogue_controller.bak │ │ ├── pwm_analogue_controller.kicad_pcb │ │ ├── pwm_analogue_controller.pro │ │ ├── pwm_analogue_controller.sch │ │ └── pwm_analogue_controller_v11_00.jpg │ ├── libs │ ├── BME280 │ │ ├── .gitignore │ │ ├── BME280.cpp │ │ ├── BME280.h │ │ ├── BME280_Example │ │ │ └── BME280_Example.ino │ │ └── README.md │ └── MCP23008 │ │ ├── MCP23008.cpp │ │ ├── MCP23008.h │ │ └── MCP23008.txt │ ├── rom0.ld │ └── version ├── Chapter07 ├── NymphRPC │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── src │ │ ├── nymph.h │ │ ├── nymph_listener.cpp │ │ ├── nymph_listener.h │ │ ├── nymph_logger.cpp │ │ ├── nymph_logger.h │ │ ├── nymph_message.cpp │ │ ├── nymph_message.h │ │ ├── nymph_method.cpp │ │ ├── nymph_method.h │ │ ├── nymph_server.cpp │ │ ├── nymph_server.h │ │ ├── nymph_session.cpp │ │ ├── nymph_session.h │ │ ├── nymph_socket_listener.cpp │ │ ├── nymph_socket_listener.h │ │ ├── nymph_types.cpp │ │ ├── nymph_types.h │ │ ├── nymph_utilities.cpp │ │ ├── nymph_utilities.h │ │ ├── remote_client.cpp │ │ ├── remote_client.h │ │ ├── remote_server.cpp │ │ └── remote_server.h │ └── test │ │ ├── nymph_test_client │ │ ├── Makefile │ │ └── nymph_test_client.cpp │ │ └── nymph_test_server │ │ ├── Makefile │ │ └── nymph_test_server.cpp └── sim │ ├── Makefile │ ├── Makefile-user.mk │ ├── Makefile.node │ ├── esp8266 │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── Makefile-user.mk │ ├── README.md │ ├── app.bak2 │ │ ├── main.cpp │ │ ├── ota_core.cpp │ │ └── ota_core.h │ ├── app │ │ ├── base_module.cpp │ │ ├── base_module.h │ │ ├── bme280_module.cpp │ │ ├── bme280_module.h │ │ ├── co2_module.cpp │ │ ├── co2_module.h │ │ ├── main.cpp │ │ ├── ota_core.cpp │ │ ├── ota_core.h │ │ ├── thp_module.cpp │ │ └── thp_module.h │ ├── files │ │ ├── esp8266.client.crt.binary │ │ ├── esp8266.client.key.binary │ │ ├── index.html │ │ └── index.html.bak │ ├── libs │ │ └── BME280 │ │ │ ├── .gitignore │ │ │ ├── BME280.cpp │ │ │ ├── BME280.h │ │ │ ├── BME280_Example │ │ │ └── BME280_Example.ino │ │ │ └── README.md │ └── version │ └── test │ ├── Makefile │ ├── building.cpp │ ├── building.h │ ├── config.cpp │ ├── config.h │ ├── config.ini │ ├── device_types.h │ ├── devices │ ├── apa102.h │ ├── apa102.ini │ ├── bme280.h │ ├── bme280.ini │ ├── device.cpp │ ├── device.h │ ├── jura.h │ ├── jura.ini │ ├── mhz19.h │ ├── mhz19.ini │ └── sensor.h │ ├── floor.cpp │ ├── floor.h │ ├── node.cpp │ ├── node.h │ ├── node │ ├── Libraries │ │ └── BME280 │ │ │ ├── .gitignore │ │ │ ├── BME280.cpp │ │ │ ├── BME280.h │ │ │ ├── BME280_Example │ │ │ └── BME280_Example.ino │ │ │ └── README.md │ ├── SmingCore │ │ ├── Clock.cpp │ │ ├── Clock.h │ │ ├── Delegate.h │ │ ├── FileSystem.cpp │ │ ├── FileSystem.h │ │ ├── SimpleTimer.h │ │ ├── SmingCore.cpp │ │ ├── SmingCore.h │ │ ├── Timer.cpp │ │ ├── Timer.h │ │ ├── WConstants.h │ │ ├── network │ │ │ ├── MqttClient.cpp │ │ │ ├── MqttClient.h │ │ │ ├── URL.cpp │ │ │ ├── URL.h │ │ │ └── libmosquitto │ │ │ │ ├── Makefile │ │ │ │ ├── actions.c │ │ │ │ ├── actions.o │ │ │ │ ├── callbacks.c │ │ │ │ ├── callbacks.o │ │ │ │ ├── config.h │ │ │ │ ├── config.mk │ │ │ │ ├── connect.c │ │ │ │ ├── connect.o │ │ │ │ ├── cpp │ │ │ │ ├── Makefile │ │ │ │ ├── libmosquittopp.a │ │ │ │ ├── libmosquittopp.so.1 │ │ │ │ ├── mosquittopp.cpp │ │ │ │ ├── mosquittopp.h │ │ │ │ └── mosquittopp.o │ │ │ │ ├── dummypthread.h │ │ │ │ ├── handle_connack.c │ │ │ │ ├── handle_connack.o │ │ │ │ ├── handle_ping.c │ │ │ │ ├── handle_ping.o │ │ │ │ ├── handle_pubackcomp.c │ │ │ │ ├── handle_pubackcomp.o │ │ │ │ ├── handle_publish.c │ │ │ │ ├── handle_publish.o │ │ │ │ ├── handle_pubrec.c │ │ │ │ ├── handle_pubrec.o │ │ │ │ ├── handle_pubrel.c │ │ │ │ ├── handle_pubrel.o │ │ │ │ ├── handle_suback.c │ │ │ │ ├── handle_suback.o │ │ │ │ ├── handle_unsuback.c │ │ │ │ ├── handle_unsuback.o │ │ │ │ ├── helpers.c │ │ │ │ ├── helpers.o │ │ │ │ ├── libmosquitto.a │ │ │ │ ├── libmosquitto.so.1 │ │ │ │ ├── linker.version │ │ │ │ ├── logging_mosq.c │ │ │ │ ├── logging_mosq.h │ │ │ │ ├── logging_mosq.o │ │ │ │ ├── loop.c │ │ │ │ ├── loop.o │ │ │ │ ├── memory_mosq.c │ │ │ │ ├── memory_mosq.h │ │ │ │ ├── memory_mosq.o │ │ │ │ ├── messages_mosq.c │ │ │ │ ├── messages_mosq.h │ │ │ │ ├── messages_mosq.o │ │ │ │ ├── mosquitto.c │ │ │ │ ├── mosquitto.h │ │ │ │ ├── mosquitto.o │ │ │ │ ├── mosquitto_internal.h │ │ │ │ ├── mqtt3_protocol.h │ │ │ │ ├── net_mosq.c │ │ │ │ ├── net_mosq.h │ │ │ │ ├── net_mosq.o │ │ │ │ ├── options.c │ │ │ │ ├── options.o │ │ │ │ ├── packet_mosq.c │ │ │ │ ├── packet_mosq.h │ │ │ │ ├── packet_mosq.o │ │ │ │ ├── read_handle.c │ │ │ │ ├── read_handle.h │ │ │ │ ├── read_handle.o │ │ │ │ ├── send_connect.c │ │ │ │ ├── send_connect.o │ │ │ │ ├── send_disconnect.c │ │ │ │ ├── send_disconnect.o │ │ │ │ ├── send_mosq.c │ │ │ │ ├── send_mosq.h │ │ │ │ ├── send_mosq.o │ │ │ │ ├── send_publish.c │ │ │ │ ├── send_publish.o │ │ │ │ ├── send_subscribe.c │ │ │ │ ├── send_subscribe.o │ │ │ │ ├── send_unsubscribe.c │ │ │ │ ├── send_unsubscribe.o │ │ │ │ ├── socks_mosq.c │ │ │ │ ├── socks_mosq.h │ │ │ │ ├── socks_mosq.o │ │ │ │ ├── srv_mosq.c │ │ │ │ ├── srv_mosq.o │ │ │ │ ├── thread_mosq.c │ │ │ │ ├── thread_mosq.o │ │ │ │ ├── time_mosq.c │ │ │ │ ├── time_mosq.h │ │ │ │ ├── time_mosq.o │ │ │ │ ├── tls_mosq.c │ │ │ │ ├── tls_mosq.h │ │ │ │ ├── tls_mosq.o │ │ │ │ ├── utf8_mosq.c │ │ │ │ ├── utf8_mosq.o │ │ │ │ ├── util_mosq.c │ │ │ │ ├── util_mosq.h │ │ │ │ ├── util_mosq.o │ │ │ │ ├── will_mosq.c │ │ │ │ ├── will_mosq.h │ │ │ │ └── will_mosq.o │ │ ├── user_config.h │ │ └── wiring │ │ │ ├── Countable.h │ │ │ ├── Print.cpp │ │ │ ├── Print.h │ │ │ ├── Printable.h │ │ │ ├── SplitString.cpp │ │ │ ├── SplitString.h │ │ │ ├── Stream.cpp │ │ │ ├── Stream.h │ │ │ ├── WHashMap.h │ │ │ ├── WString.cpp │ │ │ ├── WString.h │ │ │ ├── WVector.h │ │ │ ├── stringconversion.cpp │ │ │ └── stringconversion.h │ └── user_config.h │ ├── nodes.cpp │ ├── nodes.h │ ├── room.cpp │ ├── room.h │ ├── simulation.cpp │ ├── types.h │ ├── utility.cpp │ └── utility.h ├── Chapter08 └── voicetainment │ ├── Voicetainment.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── sphinx │ ├── pocketsphinx │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NEWS │ │ ├── README │ │ ├── README.md │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── args2man.pl │ │ │ ├── doxy2swig.py │ │ │ ├── doxyfile.in │ │ │ ├── pocketsphinx_batch.1 │ │ │ ├── pocketsphinx_batch.1.in │ │ │ ├── pocketsphinx_continuous.1 │ │ │ ├── pocketsphinx_continuous.1.in │ │ │ └── pocketsphinx_mdef_convert.1 │ │ ├── include │ │ │ ├── cmdln_macro.h │ │ │ ├── pocketsphinx.h │ │ │ ├── pocketsphinx_export.h │ │ │ ├── ps_lattice.h │ │ │ ├── ps_mllr.h │ │ │ └── ps_search.h │ │ ├── indent.sh │ │ ├── model │ │ │ └── en-us │ │ │ │ ├── cmudict-en-us.dict │ │ │ │ ├── en-us-phone.lm.bin │ │ │ │ ├── en-us.lm.bin │ │ │ │ └── en-us │ │ │ │ ├── README │ │ │ │ ├── feat.params │ │ │ │ ├── mdef │ │ │ │ ├── means │ │ │ │ ├── noisedict │ │ │ │ ├── sendump │ │ │ │ ├── transition_matrices │ │ │ │ └── variances │ │ ├── pocketsphinx.sln │ │ ├── src │ │ │ ├── gst-plugin │ │ │ │ ├── gstpocketsphinx.c │ │ │ │ ├── gstpocketsphinx.h │ │ │ │ ├── livedemo.c │ │ │ │ └── livedemo.py │ │ │ ├── libpocketsphinx │ │ │ │ ├── acmod.c │ │ │ │ ├── acmod.h │ │ │ │ ├── allphone_search.c │ │ │ │ ├── allphone_search.h │ │ │ │ ├── bin_mdef.c │ │ │ │ ├── bin_mdef.h │ │ │ │ ├── blkarray_list.c │ │ │ │ ├── blkarray_list.h │ │ │ │ ├── dict.c │ │ │ │ ├── dict.h │ │ │ │ ├── dict2pid.c │ │ │ │ ├── dict2pid.h │ │ │ │ ├── fast_ptm.txt │ │ │ │ ├── fsg_history.c │ │ │ │ ├── fsg_history.h │ │ │ │ ├── fsg_lextree.c │ │ │ │ ├── fsg_lextree.h │ │ │ │ ├── fsg_search.c │ │ │ │ ├── fsg_search_internal.h │ │ │ │ ├── hmm.c │ │ │ │ ├── hmm.h │ │ │ │ ├── kws_detections.c │ │ │ │ ├── kws_detections.h │ │ │ │ ├── kws_search.c │ │ │ │ ├── kws_search.h │ │ │ │ ├── mdef.c │ │ │ │ ├── mdef.h │ │ │ │ ├── ms_gauden.c │ │ │ │ ├── ms_gauden.h │ │ │ │ ├── ms_mgau.c │ │ │ │ ├── ms_mgau.h │ │ │ │ ├── ms_senone.c │ │ │ │ ├── ms_senone.h │ │ │ │ ├── ngram_search.c │ │ │ │ ├── ngram_search.h │ │ │ │ ├── ngram_search_fwdflat.c │ │ │ │ ├── ngram_search_fwdflat.h │ │ │ │ ├── ngram_search_fwdtree.c │ │ │ │ ├── ngram_search_fwdtree.h │ │ │ │ ├── phone_loop_search.c │ │ │ │ ├── phone_loop_search.h │ │ │ │ ├── pocketsphinx.c │ │ │ │ ├── pocketsphinx_internal.h │ │ │ │ ├── ps_alignment.c │ │ │ │ ├── ps_alignment.h │ │ │ │ ├── ps_lattice.c │ │ │ │ ├── ps_lattice_internal.h │ │ │ │ ├── ps_mllr.c │ │ │ │ ├── ptm_mgau.c │ │ │ │ ├── ptm_mgau.h │ │ │ │ ├── s2_semi_mgau.c │ │ │ │ ├── s2_semi_mgau.h │ │ │ │ ├── s3types.h │ │ │ │ ├── state_align_search.c │ │ │ │ ├── state_align_search.h │ │ │ │ ├── tied_mgau_common.h │ │ │ │ ├── tmat.c │ │ │ │ ├── tmat.h │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ └── programs │ │ │ │ ├── batch.c │ │ │ │ ├── continuous.c │ │ │ │ └── mdef_convert.c │ │ ├── swig │ │ │ ├── Makefile.am │ │ │ ├── csharp │ │ │ │ ├── Makefile │ │ │ │ └── test.cs │ │ │ ├── java │ │ │ │ ├── Makefile │ │ │ │ └── test │ │ │ │ │ └── DecoderTest.java │ │ │ ├── javascript │ │ │ │ ├── README │ │ │ │ └── test.js │ │ │ ├── pocketsphinx.i │ │ │ ├── ps_decoder.i │ │ │ ├── ps_lattice.i │ │ │ ├── python │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ └── test │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── config_test.py │ │ │ │ │ ├── continuous_test.py │ │ │ │ │ ├── decoder_test.py │ │ │ │ │ ├── fsg_test.py │ │ │ │ │ ├── jsgf_test.py │ │ │ │ │ ├── kws_test.py │ │ │ │ │ ├── lattice_test.py │ │ │ │ │ ├── lm_test.py │ │ │ │ │ └── phoneme_test.py │ │ │ └── ruby │ │ │ │ ├── pocketsphinx │ │ │ │ └── extconf.rb │ │ │ │ ├── sphinxbase │ │ │ │ └── extconf.rb │ │ │ │ ├── test.rb │ │ │ │ └── test.sh │ │ ├── test │ │ │ ├── compare_table.pl │ │ │ ├── data │ │ │ │ ├── an4_ci_cont │ │ │ │ │ ├── feat.params │ │ │ │ │ ├── mdef │ │ │ │ │ ├── means │ │ │ │ │ ├── mixture_weights │ │ │ │ │ ├── noisedict │ │ │ │ │ ├── transition_matrices │ │ │ │ │ └── variances │ │ │ │ ├── cards │ │ │ │ │ ├── 001.wav │ │ │ │ │ ├── 002.wav │ │ │ │ │ ├── 003.wav │ │ │ │ │ ├── 004.wav │ │ │ │ │ ├── 005.wav │ │ │ │ │ ├── cards.fileids │ │ │ │ │ ├── cards.gram │ │ │ │ │ ├── cards.hyp │ │ │ │ │ └── cards.transcription │ │ │ │ ├── defective.dic │ │ │ │ ├── defective.gram │ │ │ │ ├── goforward.fsg │ │ │ │ ├── goforward.gram │ │ │ │ ├── goforward.kws │ │ │ │ ├── goforward.mfc │ │ │ │ ├── goforward.raw │ │ │ │ ├── librivox │ │ │ │ │ ├── fileids │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0870.txt │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0870.wav │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0880.txt │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0880.wav │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0890.txt │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0890.wav │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0920.txt │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0920.wav │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0930.txt │ │ │ │ │ ├── sense_and_sensibility_01_austen_64kb-0930.wav │ │ │ │ │ ├── test-align.matchseg │ │ │ │ │ ├── test-lm.match │ │ │ │ │ └── transcription │ │ │ │ ├── mllr_matrices │ │ │ │ ├── numbers.raw │ │ │ │ ├── something.raw │ │ │ │ ├── test.lmctl │ │ │ │ ├── tidigits │ │ │ │ │ ├── dhd.2934z.raw │ │ │ │ │ ├── hmm │ │ │ │ │ │ ├── feat.params │ │ │ │ │ │ ├── mdef │ │ │ │ │ │ ├── means │ │ │ │ │ │ ├── sendump │ │ │ │ │ │ ├── transition_matrices │ │ │ │ │ │ └── variances │ │ │ │ │ ├── lm │ │ │ │ │ │ ├── tidigits.dic │ │ │ │ │ │ ├── tidigits.fsg │ │ │ │ │ │ └── tidigits.lm.bin │ │ │ │ │ ├── man.ah.111a.mfc │ │ │ │ │ ├── man.ah.1b.mfc │ │ │ │ │ ├── man.ah.2934za.mfc │ │ │ │ │ ├── man.ah.35oa.mfc │ │ │ │ │ ├── man.ah.3oa.mfc │ │ │ │ │ ├── man.ah.4625a.mfc │ │ │ │ │ ├── man.ah.588zza.mfc │ │ │ │ │ ├── man.ah.63a.mfc │ │ │ │ │ ├── man.ah.6o838a.mfc │ │ │ │ │ ├── man.ah.75913a.mfc │ │ │ │ │ ├── man.ah.844o1a.mfc │ │ │ │ │ ├── man.ah.8b.mfc │ │ │ │ │ ├── man.ah.9b.mfc │ │ │ │ │ ├── man.ah.o789a.mfc │ │ │ │ │ ├── man.ah.z4548a.mfc │ │ │ │ │ ├── man.ah.zb.mfc │ │ │ │ │ ├── test-tidigits-fsg.match │ │ │ │ │ ├── test-tidigits-simple.match │ │ │ │ │ ├── tidigits.ctl │ │ │ │ │ ├── tidigits.lsn │ │ │ │ │ ├── woman.ak.1b.mfc │ │ │ │ │ ├── woman.ak.276317oa.mfc │ │ │ │ │ ├── woman.ak.334a.mfc │ │ │ │ │ ├── woman.ak.3z3z9a.mfc │ │ │ │ │ ├── woman.ak.48z66zza.mfc │ │ │ │ │ ├── woman.ak.532a.mfc │ │ │ │ │ ├── woman.ak.5z874a.mfc │ │ │ │ │ ├── woman.ak.6728za.mfc │ │ │ │ │ ├── woman.ak.75a.mfc │ │ │ │ │ ├── woman.ak.84983a.mfc │ │ │ │ │ ├── woman.ak.8a.mfc │ │ │ │ │ ├── woman.ak.99731a.mfc │ │ │ │ │ ├── woman.ak.o69a.mfc │ │ │ │ │ ├── woman.ak.ooa.mfc │ │ │ │ │ └── woman.ak.za.mfc │ │ │ │ ├── turtle.dic │ │ │ │ ├── turtle.lm.bin │ │ │ │ └── unreachable.lat │ │ │ ├── regression │ │ │ │ ├── test-align.sh │ │ │ │ ├── test-cards.sh │ │ │ │ ├── test-lm.sh │ │ │ │ ├── test-tidigits-fsg.sh │ │ │ │ └── test-tidigits-simple.sh │ │ │ ├── testfuncs.sh.in │ │ │ ├── testfuncs_cygwin.sh │ │ │ ├── unit │ │ │ │ ├── Makefile │ │ │ │ ├── test_acmod.c │ │ │ │ ├── test_acmod_grow.c │ │ │ │ ├── test_alignment.c │ │ │ │ ├── test_allphone.c │ │ │ │ ├── test_dict.c │ │ │ │ ├── test_dict2pid.c │ │ │ │ ├── test_fsg.c │ │ │ │ ├── test_fwdflat.c │ │ │ │ ├── test_fwdtree.c │ │ │ │ ├── test_fwdtree_bestpath.c │ │ │ │ ├── test_init.c │ │ │ │ ├── test_jsgf.c │ │ │ │ ├── test_keyphrase.c │ │ │ │ ├── test_lattice.c │ │ │ │ ├── test_lm_read.c │ │ │ │ ├── test_macros.h │ │ │ │ ├── test_mllr.c │ │ │ │ ├── test_nbest.c │ │ │ │ ├── test_posterior.c │ │ │ │ ├── test_ps.c │ │ │ │ ├── test_ptm_mgau.c │ │ │ │ ├── test_reinit.c │ │ │ │ ├── test_senfh.c │ │ │ │ ├── test_set_search.c │ │ │ │ ├── test_simple.c │ │ │ │ └── test_state_align.c │ │ │ └── word_align.pl │ │ └── win32 │ │ │ ├── pocketsphinx │ │ │ ├── pocketsphinx.vcxproj │ │ │ └── pocketsphinx.vcxproj.filters │ │ │ ├── pocketsphinx_batch │ │ │ ├── pocketsphinx.args │ │ │ └── pocketsphinx_batch.vcxproj │ │ │ ├── pocketsphinx_continuous │ │ │ ├── pocketsphinx.args │ │ │ └── pocketsphinx_continuous.vcxproj │ │ │ └── pocketsphinx_mdef_convert │ │ │ └── pocketsphinx_mdef_convert.vcxproj │ └── sphinxbase │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NEWS │ │ ├── README │ │ ├── README.md │ │ ├── compile │ │ ├── depcomp │ │ ├── doc │ │ ├── args2man.pl │ │ ├── doxy2swig.py │ │ ├── doxyfile.in │ │ ├── sphinx_cepview.1 │ │ ├── sphinx_cepview.1.in │ │ ├── sphinx_cont_seg.1 │ │ ├── sphinx_cont_seg.1.in │ │ ├── sphinx_fe.1 │ │ ├── sphinx_fe.1.in │ │ ├── sphinx_lm_convert.1 │ │ ├── sphinx_lm_convert.1.in │ │ ├── sphinx_lm_eval.1 │ │ ├── sphinx_lm_eval.1.in │ │ ├── sphinx_lm_sort.1 │ │ ├── sphinx_pitch.1 │ │ └── sphinx_pitch.1.in │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── android │ │ │ ├── config.h │ │ │ └── sphinx_config.h │ │ ├── config.h.in │ │ ├── sphinx_config.h │ │ ├── sphinxbase │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ad.h │ │ │ ├── agc.h │ │ │ ├── bio.h │ │ │ ├── bitarr.h │ │ │ ├── bitvec.h │ │ │ ├── byteorder.h │ │ │ ├── case.h │ │ │ ├── ckd_alloc.h │ │ │ ├── clapack_lite.h │ │ │ ├── cmd_ln.h │ │ │ ├── cmn.h │ │ │ ├── err.h │ │ │ ├── f2c.h │ │ │ ├── fe.h │ │ │ ├── feat.h │ │ │ ├── filename.h │ │ │ ├── fixpoint.h │ │ │ ├── fsg_model.h │ │ │ ├── genrand.h │ │ │ ├── glist.h │ │ │ ├── hash_table.h │ │ │ ├── heap.h │ │ │ ├── jsgf.h │ │ │ ├── listelem_alloc.h │ │ │ ├── logmath.h │ │ │ ├── matrix.h │ │ │ ├── mmio.h │ │ │ ├── ngram_model.h │ │ │ ├── pio.h │ │ │ ├── prim_type.h │ │ │ ├── priority_queue.h │ │ │ ├── profile.h │ │ │ ├── sbthread.h │ │ │ ├── sphinxbase_export.h │ │ │ ├── strfuncs.h │ │ │ └── yin.h │ │ ├── win32 │ │ │ ├── config.h │ │ │ └── sphinx_config.h │ │ └── wince │ │ │ ├── assert.h │ │ │ ├── config.h │ │ │ ├── errno.h │ │ │ └── sphinx_config.h │ │ ├── indent.sh │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── py-compile │ │ ├── sphinxbase.pc.in │ │ ├── sphinxbase.sln │ │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libsphinxad │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ad_alsa.c │ │ │ ├── ad_base.c │ │ │ ├── ad_openal.c │ │ │ ├── ad_oss.c │ │ │ ├── ad_pulse.c │ │ │ └── ad_win32.c │ │ ├── libsphinxbase │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fe │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fe_design.txt │ │ │ │ ├── fe_interface.c │ │ │ │ ├── fe_internal.h │ │ │ │ ├── fe_noise.c │ │ │ │ ├── fe_noise.h │ │ │ │ ├── fe_prespch_buf.c │ │ │ │ ├── fe_prespch_buf.h │ │ │ │ ├── fe_sigproc.c │ │ │ │ ├── fe_type.h │ │ │ │ ├── fe_warp.c │ │ │ │ ├── fe_warp.h │ │ │ │ ├── fe_warp_affine.c │ │ │ │ ├── fe_warp_affine.h │ │ │ │ ├── fe_warp_inverse_linear.c │ │ │ │ ├── fe_warp_inverse_linear.h │ │ │ │ ├── fe_warp_piecewise_linear.c │ │ │ │ ├── fe_warp_piecewise_linear.h │ │ │ │ ├── fixlog.c │ │ │ │ ├── make_log_sub_table.py │ │ │ │ ├── make_log_table.py │ │ │ │ └── yin.c │ │ │ ├── feat │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── agc.c │ │ │ │ ├── cmn.c │ │ │ │ ├── cmn_live.c │ │ │ │ ├── feat.c │ │ │ │ └── lda.c │ │ │ ├── lm │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _jsgf_scanner.l │ │ │ │ ├── fsg_model.c │ │ │ │ ├── jsgf.c │ │ │ │ ├── jsgf_internal.h │ │ │ │ ├── jsgf_parser.c │ │ │ │ ├── jsgf_parser.h │ │ │ │ ├── jsgf_parser.y │ │ │ │ ├── jsgf_scanner.c │ │ │ │ ├── jsgf_scanner.h │ │ │ │ ├── lm_trie.c │ │ │ │ ├── lm_trie.h │ │ │ │ ├── lm_trie_quant.c │ │ │ │ ├── lm_trie_quant.h │ │ │ │ ├── ngram_model.c │ │ │ │ ├── ngram_model_internal.h │ │ │ │ ├── ngram_model_set.c │ │ │ │ ├── ngram_model_set.h │ │ │ │ ├── ngram_model_trie.c │ │ │ │ ├── ngram_model_trie.h │ │ │ │ ├── ngrams_raw.c │ │ │ │ └── ngrams_raw.h │ │ │ └── util │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.python │ │ │ │ ├── bio.c │ │ │ │ ├── bitarr.c │ │ │ │ ├── bitvec.c │ │ │ │ ├── blas_lite.c │ │ │ │ ├── case.c │ │ │ │ ├── ckd_alloc.c │ │ │ │ ├── clapack_scrub.py │ │ │ │ ├── cmd_ln.c │ │ │ │ ├── dtoa.c │ │ │ │ ├── err.c │ │ │ │ ├── errno.c │ │ │ │ ├── f2c_lite.c │ │ │ │ ├── filename.c │ │ │ │ ├── fortran.py │ │ │ │ ├── genrand.c │ │ │ │ ├── glist.c │ │ │ │ ├── hash_table.c │ │ │ │ ├── heap.c │ │ │ │ ├── listelem_alloc.c │ │ │ │ ├── logmath.c │ │ │ │ ├── make_lite.py │ │ │ │ ├── matrix.c │ │ │ │ ├── mmio.c │ │ │ │ ├── pio.c │ │ │ │ ├── priority_queue.c │ │ │ │ ├── profile.c │ │ │ │ ├── sbthread.c │ │ │ │ ├── slamch.c │ │ │ │ ├── slapack_lite.c │ │ │ │ ├── strfuncs.c │ │ │ │ └── wrapped_routines │ │ ├── sphinx_adtools │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cont_seg.c │ │ │ └── sphinx_pitch.c │ │ ├── sphinx_cepview │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── main_cepview.c │ │ ├── sphinx_fe │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cmd_ln_defn.h │ │ │ ├── sphinx_fe.c │ │ │ └── sphinx_wave2feat.h │ │ ├── sphinx_jsgf2fsg │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fsg2dot.pl │ │ │ └── main.c │ │ └── sphinx_lmtools │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── sphinx_lm_convert.c │ │ │ └── sphinx_lm_eval.c │ │ ├── swig │ │ ├── cmd_ln.i │ │ ├── fe.i │ │ ├── feat.i │ │ ├── fsg_model.i │ │ ├── iterators.i │ │ ├── jsgf.i │ │ ├── logmath.i │ │ ├── ngram_model.i │ │ ├── python │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── __init__.py │ │ ├── sphinxbase.i │ │ └── typemaps.i │ │ ├── test-driver │ │ ├── test │ │ ├── compare_table.pl │ │ ├── regression │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── chan3-dither.cepview │ │ │ ├── chan3-logspec.cepview │ │ │ ├── chan3-smoothspec.cepview │ │ │ ├── chan3.2chan.wav │ │ │ ├── chan3.cepview │ │ │ ├── chan3.ctl │ │ │ ├── chan3.f0 │ │ │ ├── chan3.logspec │ │ │ ├── chan3.mfc │ │ │ ├── chan3.raw │ │ │ ├── chan3.sph │ │ │ ├── chan3.wav │ │ │ ├── polite.gram │ │ │ ├── test-cepview.sh │ │ │ ├── test-sphinx_fe-ctl.sh │ │ │ ├── test-sphinx_fe-dct.sh │ │ │ ├── test-sphinx_fe-dither-seed.sh │ │ │ ├── test-sphinx_fe-logspec.sh │ │ │ ├── test-sphinx_fe-logspec2cep.sh │ │ │ ├── test-sphinx_fe-smoothspec.sh │ │ │ ├── test-sphinx_fe.sh │ │ │ ├── test-sphinx_jsgf2fsg.sh │ │ │ ├── test-sphinx_pitch.sh │ │ │ ├── test.command.fsg │ │ │ ├── test.gram │ │ │ ├── test.kleene.fsg │ │ │ ├── test.nestedRightRecursion.fsg │ │ │ ├── test.nulltest.fsg │ │ │ ├── test.rightRecursion.fsg │ │ │ └── testfuncs.sh.in │ │ └── unit │ │ │ ├── test_alloc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test_ckd_alloc.c │ │ │ ├── test_ckd_alloc_abort.c │ │ │ ├── test_ckd_alloc_abort.sh │ │ │ ├── test_ckd_alloc_catch.c │ │ │ ├── test_ckd_alloc_fail.c │ │ │ ├── test_ckd_alloc_fail.sh │ │ │ ├── test_listelem_alloc.c │ │ │ └── test_macros.h │ │ │ ├── test_bitvec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test_bitvec.c │ │ │ └── test_macros.h │ │ │ ├── test_case │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lcase1.test │ │ │ ├── _lcase2.test │ │ │ ├── _lcase3.test │ │ │ ├── _strcmp1.test │ │ │ ├── _strcmp2.test │ │ │ ├── _strcmp3.test │ │ │ ├── _ucase1.test │ │ │ ├── _ucase2.test │ │ │ ├── _ucase3.test │ │ │ └── chgCase.c │ │ │ ├── test_cmdln │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _test_parse_badargs.res │ │ │ ├── _test_parse_badargs.test │ │ │ ├── _test_parse_defaults.res │ │ │ ├── _test_parse_defaults.test │ │ │ ├── _test_parse_defaults_r.res │ │ │ ├── _test_parse_defaults_r.test │ │ │ ├── _test_parse_goodargs.res │ │ │ ├── _test_parse_goodargs.test │ │ │ ├── _test_parse_multiple.res │ │ │ ├── _test_parse_multiple.test │ │ │ ├── cmdln_parse.c │ │ │ ├── cmdln_parse_multiple.c │ │ │ └── cmdln_parse_r.c │ │ │ ├── test_fe │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test_fe.c │ │ │ ├── test_macros.h │ │ │ └── test_pitch.c │ │ │ ├── test_feat │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _test_feat.res │ │ │ ├── _test_feat.test │ │ │ ├── test_feat.c │ │ │ ├── test_feat_fe.c │ │ │ ├── test_feat_live.c │ │ │ ├── test_macros.h │ │ │ └── test_subvq.c │ │ │ ├── test_fsg │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── goforward.fsg │ │ │ ├── polite.gram │ │ │ ├── public.gram │ │ │ ├── test_fsg_jsgf.c │ │ │ ├── test_fsg_read.c │ │ │ ├── test_fsg_write_fsm.c │ │ │ └── test_macros.h │ │ │ ├── test_hash │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _hash_delete1.res │ │ │ ├── _hash_delete1.test │ │ │ ├── _hash_delete2.res │ │ │ ├── _hash_delete2.test │ │ │ ├── _hash_delete3.res │ │ │ ├── _hash_delete3.test │ │ │ ├── _hash_delete4.res │ │ │ ├── _hash_delete4.test │ │ │ ├── _hash_delete5.res │ │ │ ├── _hash_delete5.test │ │ │ ├── deletehash.c │ │ │ ├── display.res │ │ │ ├── displayhash.c │ │ │ ├── test_hash_iter.c │ │ │ └── test_macros.h │ │ │ ├── test_lineiter │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test.txt │ │ │ ├── test_lineiter.c │ │ │ └── test_macros.h │ │ │ ├── test_logmath │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test_log_int16.c │ │ │ ├── test_log_int8.c │ │ │ ├── test_log_shifted.c │ │ │ └── test_macros.h │ │ │ ├── test_matrix │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _test_determinant.res │ │ │ ├── _test_determinant.test │ │ │ ├── _test_invert.res │ │ │ ├── _test_invert.test │ │ │ ├── _test_solve.res │ │ │ ├── _test_solve.test │ │ │ ├── test_determinant.c │ │ │ ├── test_invert.c │ │ │ └── test_solve.c │ │ │ ├── test_ngram │ │ │ ├── 100.lm.bin │ │ │ ├── 100.lm.bz2 │ │ │ ├── 100.lm.dmp │ │ │ ├── 100.lm.gz │ │ │ ├── 100.lmctl │ │ │ ├── 100.probdef │ │ │ ├── 102.lm.dmp │ │ │ ├── 102.lm.gz │ │ │ ├── 104.lm.gz │ │ │ ├── 105.lm.gz │ │ │ ├── 106.lm.gz │ │ │ ├── 107.lm.gz │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test_lm_add.c │ │ │ ├── test_lm_casefold.c │ │ │ ├── test_lm_class.c │ │ │ ├── test_lm_read.c │ │ │ ├── test_lm_score.c │ │ │ ├── test_lm_set.c │ │ │ ├── test_lm_write.c │ │ │ ├── test_macros.h │ │ │ ├── turtle.lm │ │ │ ├── turtle.lm.dmp │ │ │ ├── turtle.ug.lm │ │ │ └── turtle.ug.lm.dmp │ │ │ ├── test_string │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _fread_line.test │ │ │ ├── _fread_line.txt │ │ │ ├── _nextword.test │ │ │ ├── _str2words.test │ │ │ ├── _string_join.test │ │ │ ├── _string_trim.test │ │ │ ├── strtest.c │ │ │ └── test_atof.c │ │ │ ├── test_thread │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test_event.c │ │ │ ├── test_macros.h │ │ │ ├── test_msgq.c │ │ │ └── test_thread.c │ │ │ ├── test_util │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test_bit_encode.c │ │ │ ├── test_bitarr.c │ │ │ ├── test_build_directory.c │ │ │ ├── test_filename.c │ │ │ ├── test_fopen.c │ │ │ ├── test_heap.c │ │ │ ├── test_macros.h │ │ │ └── test_readfile.c │ │ │ └── testfuncs.sh.in │ │ ├── win32 │ │ ├── sphinx_cepview │ │ │ ├── sphinx_cepview.vcxproj │ │ │ └── sphinx_cepview.vcxproj.filters │ │ ├── sphinx_fe │ │ │ ├── sphinx_fe.vcxproj │ │ │ └── sphinx_fe.vcxproj.filters │ │ ├── sphinx_jsgf2fsg │ │ │ ├── sphinx_jsgf2fsg.vcxproj │ │ │ └── sphinx_jsgf2fsg.vcxproj.filters │ │ ├── sphinx_lm_convert │ │ │ ├── sphinx_lm_convert.vcxproj │ │ │ └── sphinx_lm_convert.vcxproj.filters │ │ ├── sphinx_pitch │ │ │ ├── sphinx_pitch.vcxproj │ │ │ └── sphinx_pitch.vcxproj.filters │ │ ├── sphinx_seg │ │ │ ├── sphinx_seg.vcxproj │ │ │ └── sphinx_seg.vcxproj.filters │ │ └── sphinxbase │ │ │ ├── sphinxbase.vcxproj │ │ │ └── sphinxbase.vcxproj.filters │ │ └── ylwrap │ ├── voiceinput.cpp │ └── voiceinput.h ├── Chapter09 ├── accontrol │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── accontrol.cpp │ ├── achandler.h │ ├── config.ini │ ├── datahandler.h │ ├── htdocs │ │ └── index.html │ ├── httprequestfactory.h │ ├── listener.cpp │ ├── listener.h │ ├── nodes.cpp │ └── nodes.h ├── client │ ├── .gitignore │ ├── CnC_UI.pro │ ├── LICENSE │ ├── README.md │ ├── firmwaredialogue.cpp │ ├── firmwaredialogue.h │ ├── firmwaredialogue.ui │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mosquitto │ │ ├── mosquitto.dll │ │ ├── mosquitto.h │ │ ├── mosquitto.lib │ │ ├── mosquitto_plugin.h │ │ ├── mosquittopp.dll │ │ ├── mosquittopp.h │ │ └── mosquittopp.lib │ ├── mqttlistener.cpp │ ├── mqttlistener.h │ ├── nodefirmwaredialogue.cpp │ ├── nodefirmwaredialogue.h │ ├── nodefirmwaredialogue.ui │ ├── nodetextitem.cpp │ └── nodetextitem.h ├── esp8266 │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── Makefile-user.mk │ ├── README.md │ ├── app │ │ ├── base_module.cpp │ │ ├── base_module.cpp.bak │ │ ├── base_module.h │ │ ├── base_module.h.bak │ │ ├── bme280_module.cpp │ │ ├── bme280_module.h │ │ ├── co2_module.cpp │ │ ├── co2_module.h │ │ ├── dht_module.cpp │ │ ├── dht_module.h │ │ ├── io_module.cpp │ │ ├── io_module.h │ │ ├── jura_module.cpp │ │ ├── jura_module.h │ │ ├── juraterm_module.cpp │ │ ├── juraterm_module.h │ │ ├── main.cpp │ │ ├── motion_module.cpp │ │ ├── motion_module.h │ │ ├── ota_core.cpp │ │ ├── ota_core.h │ │ ├── plant_module.cpp │ │ ├── plant_module.cpp.bak │ │ ├── plant_module.h │ │ ├── plant_module.h.bak │ │ ├── pwm_module.cpp │ │ ├── pwm_module.h │ │ ├── switch_module.cpp │ │ ├── switch_module.h │ │ ├── thp_module.cpp │ │ └── thp_module.h │ ├── crash.log │ ├── files │ │ ├── esp8266.client.crt.binary │ │ ├── esp8266.client.key.binary │ │ ├── index.html │ │ └── index.html.bak │ ├── include │ │ ├── ssl │ │ │ ├── cert.h │ │ │ └── private_key.h │ │ └── user_config.h │ ├── libs │ │ ├── BME280 │ │ │ ├── .gitignore │ │ │ ├── BME280.cpp │ │ │ ├── BME280.h │ │ │ ├── BME280_Example │ │ │ │ └── BME280_Example.ino │ │ │ └── README.md │ │ └── MCP23008 │ │ │ ├── MCP23008.cpp │ │ │ ├── MCP23008.h │ │ │ └── MCP23008.txt │ ├── rom0.ld │ └── version ├── influx-mqtt │ ├── LICENSE │ ├── Makefile │ ├── config.ini │ ├── influx_mqtt.cpp │ ├── mth.cpp │ ├── mth.h │ └── readme.md └── server │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── cnc.cpp │ ├── config.ini │ ├── datahandler.h │ ├── httprequestfactory.h │ ├── listener.cpp │ └── listener.h ├── Chapter10 └── qml_gui │ ├── BarEntity.qml │ ├── Visualizer.qml │ ├── images │ ├── albumcover.png │ ├── demotitle.png │ ├── normalmap.png │ ├── pausehoverpressed.png │ ├── pausenormal.png │ ├── playhoverpressed.png │ ├── playnormal.png │ ├── songtitle.png │ ├── stopdisabled.png │ ├── stophoverpressed.png │ └── stopnormal.png │ ├── interface.cpp │ ├── interface.h │ ├── main.cpp │ ├── main.qml │ ├── meshes │ ├── circle.obj │ └── progressbar.obj │ ├── music │ ├── tiltshifted_lost_neon_sun.mp3 │ └── visualization.raw │ ├── qml_gui.pro │ ├── qml_gui.pro.user │ └── qml_gui.qrc ├── Chapter11 ├── FleaDSO │ ├── .build_status │ ├── .recovery │ ├── .run_manager.ini │ ├── .setting.ini │ ├── .spread_sheet.ini │ ├── .spreadsheet_view.ini │ ├── ADC_PLL │ │ ├── ._Real_._Math_.vhd │ │ ├── ADC_PLL.edn │ │ ├── ADC_PLL.fdc │ │ ├── ADC_PLL.jhd │ │ ├── ADC_PLL.lpc │ │ ├── ADC_PLL.naf │ │ ├── ADC_PLL.sbx │ │ ├── ADC_PLL.sort │ │ ├── ADC_PLL.srp │ │ ├── ADC_PLL.sym │ │ ├── ADC_PLL.vhd │ │ ├── ADC_PLL_generate.log │ │ ├── ADC_PLL_tmpl.vhd │ │ ├── generate_core.tcl │ │ ├── generate_ngd.tcl │ │ └── msg_file.log │ ├── DSO_RAMBUFFER_CH1 │ │ ├── ._Real_._Math_.vhd │ │ ├── DSO_RAMBUFFER_CH1.cst │ │ ├── DSO_RAMBUFFER_CH1.edn │ │ ├── DSO_RAMBUFFER_CH1.fdc │ │ ├── DSO_RAMBUFFER_CH1.jhd │ │ ├── DSO_RAMBUFFER_CH1.lpc │ │ ├── DSO_RAMBUFFER_CH1.naf │ │ ├── DSO_RAMBUFFER_CH1.sbx │ │ ├── DSO_RAMBUFFER_CH1.sort │ │ ├── DSO_RAMBUFFER_CH1.srp │ │ ├── DSO_RAMBUFFER_CH1.sym │ │ ├── DSO_RAMBUFFER_CH1.vhd │ │ ├── DSO_RAMBUFFER_CH1_generate.log │ │ ├── DSO_RAMBUFFER_CH1_tmpl.vhd │ │ ├── generate_core.tcl │ │ ├── generate_ngd.tcl │ │ ├── msg_file.log │ │ └── tb_DSO_RAMBUFFER_CH1_tmpl.vhd │ ├── DVI_clkgen │ │ ├── ._Real_._Math_.vhd │ │ ├── DVI_clkgen.edn │ │ ├── DVI_clkgen.fdc │ │ ├── DVI_clkgen.jhd │ │ ├── DVI_clkgen.lpc │ │ ├── DVI_clkgen.naf │ │ ├── DVI_clkgen.sbx │ │ ├── DVI_clkgen.sort │ │ ├── DVI_clkgen.srp │ │ ├── DVI_clkgen.sym │ │ ├── DVI_clkgen.vhd │ │ ├── DVI_clkgen_generate.log │ │ ├── DVI_clkgen_tmpl.vhd │ │ ├── generate_core.tcl │ │ ├── generate_ngd.tcl │ │ └── msg_file.log │ ├── FleaDSO.ldf │ ├── FleaDSO.lpf │ ├── FleaDSO │ │ ├── ._Real_._Math_.vhd │ │ ├── .build_status │ │ ├── .recordref │ │ ├── .recordref_modgen │ │ ├── .vdbs │ │ │ ├── FleaFPGA_Ohm_A5_rtl.vdb │ │ │ ├── FleaFPGA_Ohm_A5_tech.vdb │ │ │ └── dbStat.txt │ │ ├── ADC_PLL.ngo │ │ ├── AutoConstraint_FleaFPGA_Ohm_A5.sdc │ │ ├── DSO_RAMBUFFER_CH1.ngo │ │ ├── FleaDSO-Fast_Prgm.vme │ │ ├── FleaDSO.xcf │ │ ├── FleaDSO_FleaDSO.alt │ │ ├── FleaDSO_FleaDSO.arearep │ │ ├── FleaDSO_FleaDSO.areasrr │ │ ├── FleaDSO_FleaDSO.bgn │ │ ├── FleaDSO_FleaDSO.bit │ │ ├── FleaDSO_FleaDSO.dir │ │ │ ├── 5_1.ncd │ │ │ ├── 5_1.pad │ │ │ ├── 5_1.par │ │ │ ├── 5_1_par.asd │ │ │ └── FleaDSO_FleaDSO.par │ │ ├── FleaDSO_FleaDSO.drc │ │ ├── FleaDSO_FleaDSO.edi │ │ ├── FleaDSO_FleaDSO.fse │ │ ├── FleaDSO_FleaDSO.htm │ │ ├── FleaDSO_FleaDSO.log │ │ ├── FleaDSO_FleaDSO.lpf │ │ ├── FleaDSO_FleaDSO.lsedata │ │ ├── FleaDSO_FleaDSO.mrp │ │ ├── FleaDSO_FleaDSO.ncd │ │ ├── FleaDSO_FleaDSO.ngd │ │ ├── FleaDSO_FleaDSO.ngo │ │ ├── FleaDSO_FleaDSO.p2t │ │ ├── FleaDSO_FleaDSO.p3t │ │ ├── FleaDSO_FleaDSO.pad │ │ ├── FleaDSO_FleaDSO.par │ │ ├── FleaDSO_FleaDSO.prf │ │ ├── FleaDSO_FleaDSO.pt │ │ ├── FleaDSO_FleaDSO.srd │ │ ├── FleaDSO_FleaDSO.srf │ │ ├── FleaDSO_FleaDSO.srm │ │ ├── FleaDSO_FleaDSO.srr │ │ ├── FleaDSO_FleaDSO.srs │ │ ├── FleaDSO_FleaDSO.t2b │ │ ├── FleaDSO_FleaDSO_bgn.html │ │ ├── FleaDSO_FleaDSO_cck.rpt │ │ ├── FleaDSO_FleaDSO_lattice.synproj │ │ ├── FleaDSO_FleaDSO_map.asd │ │ ├── FleaDSO_FleaDSO_map.cam │ │ ├── FleaDSO_FleaDSO_map.hrr │ │ ├── FleaDSO_FleaDSO_map.ncd │ │ ├── FleaDSO_FleaDSO_mrp.html │ │ ├── FleaDSO_FleaDSO_ngd.asd │ │ ├── FleaDSO_FleaDSO_pad.html │ │ ├── FleaDSO_FleaDSO_par.html │ │ ├── FleaDSO_FleaDSO_scck.rpt │ │ ├── FleaDSO_FleaDSO_summary.html │ │ ├── FleaDSO_FleaDSO_synplify.html │ │ ├── FleaDSO_FleaDSO_synplify.lpf │ │ ├── FleaDSO_FleaDSO_synplify.tcl │ │ ├── FleaFPGA_Ohm_A5_drc.log │ │ ├── FleaFPGA_Ohm_A5_lse.twr │ │ ├── FleaFPGA_Ohm_A5_lse_lsetwr.html │ │ ├── FleaFPGA_Ohm_A5_prim.v │ │ ├── automake.log │ │ ├── backup │ │ │ └── FleaDSO_FleaDSO.srr │ │ ├── dm │ │ │ ├── FleaDSO_FleaDSO_comp.xdm │ │ │ └── layer0.xdm │ │ ├── hdla_gen_hierarchy.html │ │ ├── message.xml │ │ ├── run_options.txt │ │ ├── scratchproject.prs │ │ ├── stdout.log │ │ ├── stdout.log.bak │ │ ├── synlog.tcl │ │ ├── synlog │ │ │ ├── FleaDSO_FleaDSO_compiler.srr │ │ │ ├── FleaDSO_FleaDSO_compiler.srr.rptmap │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper.srr │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper.szr │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper.xck │ │ │ ├── FleaDSO_FleaDSO_multi_srs_gen.srr │ │ │ ├── FleaDSO_FleaDSO_premap.srr │ │ │ ├── FleaDSO_FleaDSO_premap.szr │ │ │ ├── layer0.tlg.rptmap │ │ │ ├── report │ │ │ │ ├── FleaDSO_FleaDSO_compiler_errors.txt │ │ │ │ ├── FleaDSO_FleaDSO_compiler_notes.txt │ │ │ │ ├── FleaDSO_FleaDSO_compiler_runstatus.xml │ │ │ │ ├── FleaDSO_FleaDSO_compiler_warnings.txt │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_area_report.xml │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_combined_clk.rpt │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_errors.txt │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_notes.txt │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_opt_report.xml │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_resourceusage.rpt │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_retiming.rpt │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_runstatus.xml │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_timing_report.xml │ │ │ │ ├── FleaDSO_FleaDSO_fpga_mapper_warnings.txt │ │ │ │ ├── FleaDSO_FleaDSO_hdl_info_gen_runstatus.xml │ │ │ │ ├── FleaDSO_FleaDSO_premap_errors.txt │ │ │ │ ├── FleaDSO_FleaDSO_premap_notes.txt │ │ │ │ ├── FleaDSO_FleaDSO_premap_runstatus.xml │ │ │ │ └── FleaDSO_FleaDSO_premap_warnings.txt │ │ │ ├── syntax.log.rptmap │ │ │ └── syntax_constraint_check.rpt.rptmap │ │ ├── syntax.log │ │ ├── synthesis.log │ │ ├── synthesis_lse.html │ │ ├── syntmp │ │ │ ├── FleaDSO_FleaDSO.plg │ │ │ ├── FleaDSO_FleaDSO_srr.htm │ │ │ ├── FleaDSO_FleaDSO_toc.htm │ │ │ ├── closed.png │ │ │ ├── cmdrec_compiler.log │ │ │ ├── cmdrec_fpga_mapper.log │ │ │ ├── cmdrec_hdl_info_gen.log │ │ │ ├── cmdrec_multi_srs_gen.log │ │ │ ├── cmdrec_premap.log │ │ │ ├── hdlorder.tcl │ │ │ ├── open.png │ │ │ ├── run_option.xml │ │ │ ├── statusReport.html │ │ │ └── traplog.tlg │ │ ├── synwork │ │ │ ├── .cckTransfer │ │ │ ├── FleaDSO_FleaDSO_comp.fdep │ │ │ ├── FleaDSO_FleaDSO_comp.srs │ │ │ ├── FleaDSO_FleaDSO_hdl_.fdeporig │ │ │ ├── FleaDSO_FleaDSO_m.srm │ │ │ ├── FleaDSO_FleaDSO_m_srm │ │ │ │ ├── 1.srm │ │ │ │ └── fileinfo.srm │ │ │ ├── FleaDSO_FleaDSO_mult.srs │ │ │ ├── FleaDSO_FleaDSO_mult_srs │ │ │ │ ├── 1.srs │ │ │ │ ├── fileinfo.srs │ │ │ │ └── skeleton.srs │ │ │ ├── FleaDSO_FleaDSO_prem.fse │ │ │ ├── FleaDSO_FleaDSO_prem.srd │ │ │ ├── _mh_info │ │ │ ├── layer0.fdep │ │ │ ├── layer0.fdeporig │ │ │ ├── layer0.srs │ │ │ └── layer0.tlg │ │ ├── traplog.tlg │ │ ├── xxx_lse_cp_file_list │ │ └── xxx_lse_sign_file │ ├── FleaDSO1.sty │ ├── FleaDSO_FleaDSO_summary.html │ ├── FleaDSO_tcl.html │ ├── FleaDSO_tcr.dir │ │ ├── pn140619165454.tcr │ │ ├── pn140619165607.tcr │ │ ├── pn140619165627.tcr │ │ ├── pn140620032746.tcr │ │ ├── pn140621031707.tcr │ │ ├── pn140623194617.tcr │ │ ├── pn180218002832.tcr │ │ ├── pn180220003625.tcr │ │ ├── pn180220113513.tcr │ │ └── pn181003001742.tcr │ ├── FleaFPGA_Ohm_A5.ccl │ ├── ddr_out │ │ ├── ._Real_._Math_.vhd │ │ ├── ddr_out.edn │ │ ├── ddr_out.fdc │ │ ├── ddr_out.jhd │ │ ├── ddr_out.lpc │ │ ├── ddr_out.naf │ │ ├── ddr_out.sbx │ │ ├── ddr_out.sort │ │ ├── ddr_out.srp │ │ ├── ddr_out.sym │ │ ├── ddr_out.vhd │ │ ├── ddr_out_generate.log │ │ ├── ddr_out_tmpl.v │ │ ├── ddr_out_tmpl.vhd │ │ ├── generate_core.tcl │ │ ├── generate_ngd.tcl │ │ └── msg_file.log │ ├── hdla_gen_hierarchy.html │ ├── promote.xml │ ├── reportview.xml │ └── source │ │ ├── ._Real_._Math_.vhd │ │ ├── ADC_PLL.edn │ │ ├── ADC_PLL.ipx │ │ ├── ADC_PLL.jhd │ │ ├── ADC_PLL.lpc │ │ ├── ADC_PLL.naf │ │ ├── ADC_PLL.sort │ │ ├── ADC_PLL.srp │ │ ├── ADC_PLL.sym │ │ ├── ADC_PLL.vhd │ │ ├── ADC_PLL_generate.log │ │ ├── ADC_PLL_tmpl.vhd │ │ ├── DSO_RAMBUFFER_CH1.edn │ │ ├── DSO_RAMBUFFER_CH1.ipx │ │ ├── DSO_RAMBUFFER_CH1.jhd │ │ ├── DSO_RAMBUFFER_CH1.lpc │ │ ├── DSO_RAMBUFFER_CH1.naf │ │ ├── DSO_RAMBUFFER_CH1.sort │ │ ├── DSO_RAMBUFFER_CH1.srp │ │ ├── DSO_RAMBUFFER_CH1.sym │ │ ├── DSO_RAMBUFFER_CH1.vhd │ │ ├── DSO_RAMBUFFER_CH1_generate.log │ │ ├── DSO_RAMBUFFER_CH1_tmpl.vhd │ │ ├── DVI_D.vhd │ │ ├── FleaFPGA_2v5_DSO_toplevel.lpf │ │ ├── FleaFPGA_2v5_DSO_toplevel.vhd │ │ ├── FleaFPGA_DSO.vhd │ │ ├── FleaFPGA_Ohm_A5.lpf │ │ ├── FleaFPGA_Ohm_A5_Top.vhd │ │ ├── Flea_zero_A2_top.vhd │ │ ├── Simple_VGA_CRTC.vhd │ │ ├── TDMS_encoder.vhd │ │ ├── VGA.vhd │ │ ├── generate_core.tcl │ │ ├── generate_ngd.tcl │ │ ├── msg_file.log │ │ ├── simple_uart.vhd │ │ └── tb_DSO_RAMBUFFER_CH1_tmpl.vhd └── basic_oscilloscope │ ├── Basic_oscilloscope.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── LICENSE └── README.md /Chapter03/clubstatus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/LICENSE -------------------------------------------------------------------------------- /Chapter03/clubstatus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/Makefile -------------------------------------------------------------------------------- /Chapter03/clubstatus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/README.md -------------------------------------------------------------------------------- /Chapter03/clubstatus/club.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/club.cpp -------------------------------------------------------------------------------- /Chapter03/clubstatus/club.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/club.h -------------------------------------------------------------------------------- /Chapter03/clubstatus/clubstatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/clubstatus.cpp -------------------------------------------------------------------------------- /Chapter03/clubstatus/clubstatus.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/clubstatus.service -------------------------------------------------------------------------------- /Chapter03/clubstatus/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/config.ini -------------------------------------------------------------------------------- /Chapter03/clubstatus/datahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/datahandler.h -------------------------------------------------------------------------------- /Chapter03/clubstatus/htdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/htdocs/index.html -------------------------------------------------------------------------------- /Chapter03/clubstatus/httprequestfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/httprequestfactory.h -------------------------------------------------------------------------------- /Chapter03/clubstatus/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/listener.cpp -------------------------------------------------------------------------------- /Chapter03/clubstatus/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/listener.h -------------------------------------------------------------------------------- /Chapter03/clubstatus/statushandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/statushandler.h -------------------------------------------------------------------------------- /Chapter03/clubstatus/wiring/wiringPi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/wiring/wiringPi.cpp -------------------------------------------------------------------------------- /Chapter03/clubstatus/wiring/wiringPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/wiring/wiringPi.h -------------------------------------------------------------------------------- /Chapter03/clubstatus/wiring/wiringPiI2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/wiring/wiringPiI2C.cpp -------------------------------------------------------------------------------- /Chapter03/clubstatus/wiring/wiringPiI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter03/clubstatus/wiring/wiringPiI2C.h -------------------------------------------------------------------------------- /Chapter04/chip_tester/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter04/chip_tester/Makefile -------------------------------------------------------------------------------- /Chapter04/chip_tester/src/chip_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter04/chip_tester/src/chip_tester.cpp -------------------------------------------------------------------------------- /Chapter04/chip_tester/src/serialcomm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter04/chip_tester/src/serialcomm.cpp -------------------------------------------------------------------------------- /Chapter04/chip_tester/src/serialcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter04/chip_tester/src/serialcomm.h -------------------------------------------------------------------------------- /Chapter05/esp8266/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /Chapter05/esp8266/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/LICENSE -------------------------------------------------------------------------------- /Chapter05/esp8266/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/Makefile -------------------------------------------------------------------------------- /Chapter05/esp8266/Makefile-user.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/Makefile-user.mk -------------------------------------------------------------------------------- /Chapter05/esp8266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/README.md -------------------------------------------------------------------------------- /Chapter05/esp8266/app/base_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/base_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/base_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/base_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/bme280_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/bme280_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/bme280_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/bme280_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/co2_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/co2_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/co2_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/co2_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/dht_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/dht_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/dht_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/dht_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/io_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/io_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/io_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/io_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/jura_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/jura_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/jura_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/jura_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/juraterm_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/juraterm_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/juraterm_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/juraterm_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/main.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/motion_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/motion_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/motion_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/motion_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/ota_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/ota_core.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/ota_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/ota_core.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/plant_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/plant_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/plant_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/plant_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/pwm_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/pwm_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/pwm_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/pwm_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/switch_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/switch_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/switch_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/switch_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/app/thp_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/thp_module.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/app/thp_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/app/thp_module.h -------------------------------------------------------------------------------- /Chapter05/esp8266/builds/ota_unified.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/builds/ota_unified.bin -------------------------------------------------------------------------------- /Chapter05/esp8266/files/esp8266.client.crt.binary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/esp8266/files/esp8266.client.key.binary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/esp8266/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/files/index.html -------------------------------------------------------------------------------- /Chapter05/esp8266/include/ssl/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/include/ssl/cert.h -------------------------------------------------------------------------------- /Chapter05/esp8266/include/ssl/private_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/include/ssl/private_key.h -------------------------------------------------------------------------------- /Chapter05/esp8266/include/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/include/user_config.h -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/bme280.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/bme280.lib -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/mh-z19.pretty/MH-Z19.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/mh-z19.pretty/MH-Z19.kicad_mod -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/oshw.pretty/oshw.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/oshw.pretty/oshw.kicad_mod -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/oshw.pretty/oshw_flip_small.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/oshw.pretty/oshw_flip_small.kicad_mod -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/pwm_analogue_controller-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/pwm_analogue_controller-cache.lib -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/pwm_analogue_controller-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/pwm_analogue_controller-rescue.lib -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/pwm_analogue_controller.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/pwm_analogue_controller.kicad_pcb -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/pwm_analogue_controller.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/pwm_analogue_controller.pro -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/pwm_analogue_controller.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/pwm_analogue_controller.sch -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/pwm_analogue_controller_v11_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/pwm_analogue_controller_v11_00.jpg -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/bme280.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/bme280.lib -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/mh-z19.pretty/MH-Z19.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/mh-z19.pretty/MH-Z19.kicad_mod -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/oshw.pretty/oshw.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/oshw.pretty/oshw.kicad_mod -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller-cache.lib -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller-rescue.lib -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller.bak -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller.kicad_pcb -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller.pro -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller.sch -------------------------------------------------------------------------------- /Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller_v11_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/kicad/v2.0/pwm_analogue_controller_v11_00.jpg -------------------------------------------------------------------------------- /Chapter05/esp8266/libs/BME280/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/libs/BME280/.gitignore -------------------------------------------------------------------------------- /Chapter05/esp8266/libs/BME280/BME280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/libs/BME280/BME280.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/libs/BME280/BME280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/libs/BME280/BME280.h -------------------------------------------------------------------------------- /Chapter05/esp8266/libs/BME280/BME280_Example/BME280_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/libs/BME280/BME280_Example/BME280_Example.ino -------------------------------------------------------------------------------- /Chapter05/esp8266/libs/BME280/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/libs/BME280/README.md -------------------------------------------------------------------------------- /Chapter05/esp8266/libs/MCP23008/MCP23008.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/libs/MCP23008/MCP23008.cpp -------------------------------------------------------------------------------- /Chapter05/esp8266/libs/MCP23008/MCP23008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/libs/MCP23008/MCP23008.h -------------------------------------------------------------------------------- /Chapter05/esp8266/libs/MCP23008/MCP23008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/libs/MCP23008/MCP23008.txt -------------------------------------------------------------------------------- /Chapter05/esp8266/rom0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/rom0.ld -------------------------------------------------------------------------------- /Chapter05/esp8266/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter05/esp8266/version -------------------------------------------------------------------------------- /Chapter07/NymphRPC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/LICENSE -------------------------------------------------------------------------------- /Chapter07/NymphRPC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/Makefile -------------------------------------------------------------------------------- /Chapter07/NymphRPC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/README.md -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_listener.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_listener.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_logger.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_logger.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_message.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_message.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_method.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_method.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_server.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_server.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_session.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_session.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_socket_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_socket_listener.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_socket_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_socket_listener.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_types.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_types.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_utilities.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/nymph_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/nymph_utilities.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/remote_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/remote_client.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/remote_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/remote_client.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/remote_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/remote_server.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/src/remote_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/src/remote_server.h -------------------------------------------------------------------------------- /Chapter07/NymphRPC/test/nymph_test_client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/test/nymph_test_client/Makefile -------------------------------------------------------------------------------- /Chapter07/NymphRPC/test/nymph_test_client/nymph_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/test/nymph_test_client/nymph_test_client.cpp -------------------------------------------------------------------------------- /Chapter07/NymphRPC/test/nymph_test_server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/test/nymph_test_server/Makefile -------------------------------------------------------------------------------- /Chapter07/NymphRPC/test/nymph_test_server/nymph_test_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/NymphRPC/test/nymph_test_server/nymph_test_server.cpp -------------------------------------------------------------------------------- /Chapter07/sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/Makefile -------------------------------------------------------------------------------- /Chapter07/sim/Makefile-user.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/Makefile-user.mk -------------------------------------------------------------------------------- /Chapter07/sim/Makefile.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/Makefile.node -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/LICENSE -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/Makefile -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/Makefile-user.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/Makefile-user.mk -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/README.md -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app.bak2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app.bak2/main.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app.bak2/ota_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app.bak2/ota_core.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app.bak2/ota_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app.bak2/ota_core.h -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/base_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/base_module.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/base_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/base_module.h -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/bme280_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/bme280_module.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/bme280_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/bme280_module.h -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/co2_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/co2_module.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/co2_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/co2_module.h -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/main.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/ota_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/ota_core.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/ota_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/ota_core.h -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/thp_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/thp_module.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/app/thp_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/app/thp_module.h -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/files/esp8266.client.crt.binary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/files/esp8266.client.key.binary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/files/index.html -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/files/index.html.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/files/index.html.bak -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/libs/BME280/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/libs/BME280/.gitignore -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/libs/BME280/BME280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/libs/BME280/BME280.cpp -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/libs/BME280/BME280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/libs/BME280/BME280.h -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/libs/BME280/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/libs/BME280/README.md -------------------------------------------------------------------------------- /Chapter07/sim/esp8266/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/esp8266/version -------------------------------------------------------------------------------- /Chapter07/sim/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/Makefile -------------------------------------------------------------------------------- /Chapter07/sim/test/building.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/building.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/building.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/building.h -------------------------------------------------------------------------------- /Chapter07/sim/test/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/config.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/config.h -------------------------------------------------------------------------------- /Chapter07/sim/test/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/config.ini -------------------------------------------------------------------------------- /Chapter07/sim/test/device_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/device_types.h -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/apa102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/devices/apa102.h -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/apa102.ini: -------------------------------------------------------------------------------- 1 | ; APA102 device configuration. 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/bme280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/devices/bme280.h -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/bme280.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/devices/bme280.ini -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/devices/device.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/devices/device.h -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/jura.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/devices/jura.h -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/jura.ini: -------------------------------------------------------------------------------- 1 | ; Jura device configuration. 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/mhz19.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/devices/mhz19.h -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/mhz19.ini: -------------------------------------------------------------------------------- 1 | ; MH-Z19 device configuration. 2 | 3 | read=co2 4 | 5 | baud=9600 6 | 7 | -------------------------------------------------------------------------------- /Chapter07/sim/test/devices/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/devices/sensor.h -------------------------------------------------------------------------------- /Chapter07/sim/test/floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/floor.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/floor.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/Libraries/BME280/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/Libraries/BME280/.gitignore -------------------------------------------------------------------------------- /Chapter07/sim/test/node/Libraries/BME280/BME280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/Libraries/BME280/BME280.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/Libraries/BME280/BME280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/Libraries/BME280/BME280.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/Libraries/BME280/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/Libraries/BME280/README.md -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/Clock.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/Clock.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/Delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/Delegate.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/FileSystem.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/FileSystem.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/SimpleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/SimpleTimer.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/SmingCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/SmingCore.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/SmingCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/SmingCore.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/Timer.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/Timer.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/WConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/WConstants.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/MqttClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/MqttClient.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/MqttClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/MqttClient.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/URL.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/URL.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/Makefile -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/actions.c -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/actions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/actions.o -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/config.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/config.mk -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/connect.c -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/connect.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/connect.o -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/helpers.c -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/helpers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/helpers.o -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/loop.c -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/loop.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/loop.o -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/net_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/net_mosq.c -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/net_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/net_mosq.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/net_mosq.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/net_mosq.o -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/options.c -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/options.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/options.o -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/srv_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/srv_mosq.c -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/srv_mosq.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/srv_mosq.o -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/tls_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/tls_mosq.c -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/tls_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/tls_mosq.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/network/libmosquitto/tls_mosq.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/network/libmosquitto/tls_mosq.o -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/user_config.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/Countable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/Countable.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/Print.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/Print.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/Printable.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/SplitString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/SplitString.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/SplitString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/SplitString.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/Stream.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/Stream.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/WHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/WHashMap.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/WString.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/WString.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/WVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/WVector.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/stringconversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/stringconversion.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/node/SmingCore/wiring/stringconversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/node/SmingCore/wiring/stringconversion.h -------------------------------------------------------------------------------- /Chapter07/sim/test/node/user_config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/sim/test/nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/nodes.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/nodes.h -------------------------------------------------------------------------------- /Chapter07/sim/test/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/room.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/room.h -------------------------------------------------------------------------------- /Chapter07/sim/test/simulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/simulation.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/types.h -------------------------------------------------------------------------------- /Chapter07/sim/test/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/utility.cpp -------------------------------------------------------------------------------- /Chapter07/sim/test/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter07/sim/test/utility.h -------------------------------------------------------------------------------- /Chapter08/voicetainment/Voicetainment.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/Voicetainment.pro -------------------------------------------------------------------------------- /Chapter08/voicetainment/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/main.cpp -------------------------------------------------------------------------------- /Chapter08/voicetainment/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter08/voicetainment/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/mainwindow.h -------------------------------------------------------------------------------- /Chapter08/voicetainment/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/mainwindow.ui -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/AUTHORS -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/LICENSE -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/Makefile -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/NEWS -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/README -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/doc/Makefile.am -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/doc/args2man.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/doc/args2man.pl -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/doc/doxy2swig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/doc/doxy2swig.py -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/doc/doxyfile.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/include/cmdln_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/include/cmdln_macro.h -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/include/ps_lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/include/ps_lattice.h -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/include/ps_mllr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/include/ps_mllr.h -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/include/ps_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/include/ps_search.h -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/indent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/indent.sh -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/pocketsphinx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/pocketsphinx.sln -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/src/programs/batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/src/programs/batch.c -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/Makefile.am -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/csharp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/csharp/Makefile -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/csharp/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/csharp/test.cs -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/java/Makefile -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/pocketsphinx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/pocketsphinx.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/ps_decoder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/ps_decoder.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/ps_lattice.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/ps_lattice.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/ruby/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/ruby/test.rb -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/swig/ruby/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/swig/ruby/test.sh -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/compare_table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/compare_table.pl -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.txt: -------------------------------------------------------------------------------- 1 | he was not an ill disposed young man 2 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.txt: -------------------------------------------------------------------------------- 1 | he might even have been made amiable himself 2 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/data/numbers.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/data/numbers.raw -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/data/test.lmctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/data/test.lmctl -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/data/turtle.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/data/turtle.dic -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/testfuncs.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/testfuncs.sh.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/Makefile -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_dict.c -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_fsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_fsg.c -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_init.c -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_jsgf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_jsgf.c -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_mllr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_mllr.c -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/unit/test_ps.c -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/pocketsphinx/test/word_align.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/pocketsphinx/test/word_align.pl -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/AUTHORS -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/LICENSE -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/Makefile -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/NEWS -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/README -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/compile -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/depcomp -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/args2man.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/args2man.pl -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/doxy2swig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/doxy2swig.py -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/doxyfile.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_cepview.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_cepview.1 -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_cepview.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_cepview.1.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_fe.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_fe.1 -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_fe.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_fe.1.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_lm_eval.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_lm_eval.1 -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_lm_sort.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_lm_sort.1 -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_pitch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/doc/sphinx_pitch.1 -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/include/Makefile.am -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/include/Makefile.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/include/config.h.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/indent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/indent.sh -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/install-sh -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/ltmain.sh -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/missing -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/py-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/py-compile -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/sphinxbase.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/sphinxbase.pc.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/sphinxbase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/sphinxbase.sln -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/src/Makefile.am -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/src/Makefile.in -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/cmd_ln.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/cmd_ln.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/fe.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/fe.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/feat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/feat.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/fsg_model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/fsg_model.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/iterators.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/iterators.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/jsgf.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/jsgf.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/logmath.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/logmath.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/ngram_model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/ngram_model.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/sphinxbase.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/sphinxbase.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/swig/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/swig/typemaps.i -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/test-driver -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_case/_lcase3.test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./chgCase lcase -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_case/_strcmp3.test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./chgCase strcmp_nocase -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_case/_ucase3.test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./chgCase ucase -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_hash/_hash_delete5.res: -------------------------------------------------------------------------------- 1 | Failed as expected 2 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_matrix/_test_determinant.res: -------------------------------------------------------------------------------- 1 | 5.22 2 | -1.00 3 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_string/_fread_line.test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./strtest fread_line 3 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_string/_nextword.test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./strtest nextword 3 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_string/_str2words.test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./strtest str2words 3 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/test/unit/test_string/_string_join.test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./strtest string_join 3 | -------------------------------------------------------------------------------- /Chapter08/voicetainment/sphinx/sphinxbase/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/sphinx/sphinxbase/ylwrap -------------------------------------------------------------------------------- /Chapter08/voicetainment/voiceinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/voiceinput.cpp -------------------------------------------------------------------------------- /Chapter08/voicetainment/voiceinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter08/voicetainment/voiceinput.h -------------------------------------------------------------------------------- /Chapter09/accontrol/.gitignore: -------------------------------------------------------------------------------- 1 | accontrol 2 | 3 | -------------------------------------------------------------------------------- /Chapter09/accontrol/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/LICENSE -------------------------------------------------------------------------------- /Chapter09/accontrol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/Makefile -------------------------------------------------------------------------------- /Chapter09/accontrol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/README.md -------------------------------------------------------------------------------- /Chapter09/accontrol/accontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/accontrol.cpp -------------------------------------------------------------------------------- /Chapter09/accontrol/achandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/achandler.h -------------------------------------------------------------------------------- /Chapter09/accontrol/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/config.ini -------------------------------------------------------------------------------- /Chapter09/accontrol/datahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/datahandler.h -------------------------------------------------------------------------------- /Chapter09/accontrol/htdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/htdocs/index.html -------------------------------------------------------------------------------- /Chapter09/accontrol/httprequestfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/httprequestfactory.h -------------------------------------------------------------------------------- /Chapter09/accontrol/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/listener.cpp -------------------------------------------------------------------------------- /Chapter09/accontrol/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/listener.h -------------------------------------------------------------------------------- /Chapter09/accontrol/nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/nodes.cpp -------------------------------------------------------------------------------- /Chapter09/accontrol/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/accontrol/nodes.h -------------------------------------------------------------------------------- /Chapter09/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/.gitignore -------------------------------------------------------------------------------- /Chapter09/client/CnC_UI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/CnC_UI.pro -------------------------------------------------------------------------------- /Chapter09/client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/LICENSE -------------------------------------------------------------------------------- /Chapter09/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/README.md -------------------------------------------------------------------------------- /Chapter09/client/firmwaredialogue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/firmwaredialogue.cpp -------------------------------------------------------------------------------- /Chapter09/client/firmwaredialogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/firmwaredialogue.h -------------------------------------------------------------------------------- /Chapter09/client/firmwaredialogue.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/firmwaredialogue.ui -------------------------------------------------------------------------------- /Chapter09/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/main.cpp -------------------------------------------------------------------------------- /Chapter09/client/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter09/client/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mainwindow.h -------------------------------------------------------------------------------- /Chapter09/client/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mainwindow.ui -------------------------------------------------------------------------------- /Chapter09/client/mosquitto/mosquitto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mosquitto/mosquitto.dll -------------------------------------------------------------------------------- /Chapter09/client/mosquitto/mosquitto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mosquitto/mosquitto.h -------------------------------------------------------------------------------- /Chapter09/client/mosquitto/mosquitto.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mosquitto/mosquitto.lib -------------------------------------------------------------------------------- /Chapter09/client/mosquitto/mosquitto_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mosquitto/mosquitto_plugin.h -------------------------------------------------------------------------------- /Chapter09/client/mosquitto/mosquittopp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mosquitto/mosquittopp.dll -------------------------------------------------------------------------------- /Chapter09/client/mosquitto/mosquittopp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mosquitto/mosquittopp.h -------------------------------------------------------------------------------- /Chapter09/client/mosquitto/mosquittopp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mosquitto/mosquittopp.lib -------------------------------------------------------------------------------- /Chapter09/client/mqttlistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mqttlistener.cpp -------------------------------------------------------------------------------- /Chapter09/client/mqttlistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/mqttlistener.h -------------------------------------------------------------------------------- /Chapter09/client/nodefirmwaredialogue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/nodefirmwaredialogue.cpp -------------------------------------------------------------------------------- /Chapter09/client/nodefirmwaredialogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/nodefirmwaredialogue.h -------------------------------------------------------------------------------- /Chapter09/client/nodefirmwaredialogue.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/nodefirmwaredialogue.ui -------------------------------------------------------------------------------- /Chapter09/client/nodetextitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/nodetextitem.cpp -------------------------------------------------------------------------------- /Chapter09/client/nodetextitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/client/nodetextitem.h -------------------------------------------------------------------------------- /Chapter09/esp8266/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /Chapter09/esp8266/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/LICENSE -------------------------------------------------------------------------------- /Chapter09/esp8266/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/Makefile -------------------------------------------------------------------------------- /Chapter09/esp8266/Makefile-user.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/Makefile-user.mk -------------------------------------------------------------------------------- /Chapter09/esp8266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/README.md -------------------------------------------------------------------------------- /Chapter09/esp8266/app/base_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/base_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/base_module.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/base_module.cpp.bak -------------------------------------------------------------------------------- /Chapter09/esp8266/app/base_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/base_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/base_module.h.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/base_module.h.bak -------------------------------------------------------------------------------- /Chapter09/esp8266/app/bme280_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/bme280_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/bme280_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/bme280_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/co2_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/co2_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/co2_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/co2_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/dht_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/dht_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/dht_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/dht_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/io_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/io_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/io_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/io_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/jura_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/jura_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/jura_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/jura_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/juraterm_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/juraterm_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/juraterm_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/juraterm_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/main.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/motion_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/motion_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/motion_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/motion_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/ota_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/ota_core.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/ota_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/ota_core.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/plant_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/plant_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/plant_module.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/plant_module.cpp.bak -------------------------------------------------------------------------------- /Chapter09/esp8266/app/plant_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/plant_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/plant_module.h.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/plant_module.h.bak -------------------------------------------------------------------------------- /Chapter09/esp8266/app/pwm_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/pwm_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/pwm_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/pwm_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/switch_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/switch_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/switch_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/switch_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/app/thp_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/thp_module.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/app/thp_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/app/thp_module.h -------------------------------------------------------------------------------- /Chapter09/esp8266/crash.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/crash.log -------------------------------------------------------------------------------- /Chapter09/esp8266/files/esp8266.client.crt.binary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/esp8266/files/esp8266.client.key.binary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/esp8266/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/files/index.html -------------------------------------------------------------------------------- /Chapter09/esp8266/files/index.html.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/files/index.html.bak -------------------------------------------------------------------------------- /Chapter09/esp8266/include/ssl/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/include/ssl/cert.h -------------------------------------------------------------------------------- /Chapter09/esp8266/include/ssl/private_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/include/ssl/private_key.h -------------------------------------------------------------------------------- /Chapter09/esp8266/include/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/include/user_config.h -------------------------------------------------------------------------------- /Chapter09/esp8266/libs/BME280/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/libs/BME280/.gitignore -------------------------------------------------------------------------------- /Chapter09/esp8266/libs/BME280/BME280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/libs/BME280/BME280.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/libs/BME280/BME280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/libs/BME280/BME280.h -------------------------------------------------------------------------------- /Chapter09/esp8266/libs/BME280/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/libs/BME280/README.md -------------------------------------------------------------------------------- /Chapter09/esp8266/libs/MCP23008/MCP23008.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/libs/MCP23008/MCP23008.cpp -------------------------------------------------------------------------------- /Chapter09/esp8266/libs/MCP23008/MCP23008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/libs/MCP23008/MCP23008.h -------------------------------------------------------------------------------- /Chapter09/esp8266/libs/MCP23008/MCP23008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/libs/MCP23008/MCP23008.txt -------------------------------------------------------------------------------- /Chapter09/esp8266/rom0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/rom0.ld -------------------------------------------------------------------------------- /Chapter09/esp8266/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/esp8266/version -------------------------------------------------------------------------------- /Chapter09/influx-mqtt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/influx-mqtt/LICENSE -------------------------------------------------------------------------------- /Chapter09/influx-mqtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/influx-mqtt/Makefile -------------------------------------------------------------------------------- /Chapter09/influx-mqtt/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/influx-mqtt/config.ini -------------------------------------------------------------------------------- /Chapter09/influx-mqtt/influx_mqtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/influx-mqtt/influx_mqtt.cpp -------------------------------------------------------------------------------- /Chapter09/influx-mqtt/mth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/influx-mqtt/mth.cpp -------------------------------------------------------------------------------- /Chapter09/influx-mqtt/mth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/influx-mqtt/mth.h -------------------------------------------------------------------------------- /Chapter09/influx-mqtt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/influx-mqtt/readme.md -------------------------------------------------------------------------------- /Chapter09/server/.gitignore: -------------------------------------------------------------------------------- 1 | cnc.dSYM 2 | cnc 3 | -------------------------------------------------------------------------------- /Chapter09/server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/LICENSE -------------------------------------------------------------------------------- /Chapter09/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/Makefile -------------------------------------------------------------------------------- /Chapter09/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/README.md -------------------------------------------------------------------------------- /Chapter09/server/cnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/cnc.cpp -------------------------------------------------------------------------------- /Chapter09/server/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/config.ini -------------------------------------------------------------------------------- /Chapter09/server/datahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/datahandler.h -------------------------------------------------------------------------------- /Chapter09/server/httprequestfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/httprequestfactory.h -------------------------------------------------------------------------------- /Chapter09/server/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/listener.cpp -------------------------------------------------------------------------------- /Chapter09/server/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter09/server/listener.h -------------------------------------------------------------------------------- /Chapter10/qml_gui/BarEntity.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/BarEntity.qml -------------------------------------------------------------------------------- /Chapter10/qml_gui/Visualizer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/Visualizer.qml -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/albumcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/albumcover.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/demotitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/demotitle.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/normalmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/normalmap.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/pausehoverpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/pausehoverpressed.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/pausenormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/pausenormal.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/playhoverpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/playhoverpressed.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/playnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/playnormal.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/songtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/songtitle.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/stopdisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/stopdisabled.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/stophoverpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/stophoverpressed.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/images/stopnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/images/stopnormal.png -------------------------------------------------------------------------------- /Chapter10/qml_gui/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/interface.cpp -------------------------------------------------------------------------------- /Chapter10/qml_gui/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/interface.h -------------------------------------------------------------------------------- /Chapter10/qml_gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/main.cpp -------------------------------------------------------------------------------- /Chapter10/qml_gui/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/main.qml -------------------------------------------------------------------------------- /Chapter10/qml_gui/meshes/circle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/meshes/circle.obj -------------------------------------------------------------------------------- /Chapter10/qml_gui/meshes/progressbar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/meshes/progressbar.obj -------------------------------------------------------------------------------- /Chapter10/qml_gui/music/tiltshifted_lost_neon_sun.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/music/tiltshifted_lost_neon_sun.mp3 -------------------------------------------------------------------------------- /Chapter10/qml_gui/music/visualization.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/music/visualization.raw -------------------------------------------------------------------------------- /Chapter10/qml_gui/qml_gui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/qml_gui.pro -------------------------------------------------------------------------------- /Chapter10/qml_gui/qml_gui.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/qml_gui.pro.user -------------------------------------------------------------------------------- /Chapter10/qml_gui/qml_gui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter10/qml_gui/qml_gui.qrc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/.build_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/.build_status -------------------------------------------------------------------------------- /Chapter11/FleaDSO/.recovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/.recovery -------------------------------------------------------------------------------- /Chapter11/FleaDSO/.run_manager.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/.run_manager.ini -------------------------------------------------------------------------------- /Chapter11/FleaDSO/.setting.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | Export.auto_tasks=Bitgen 3 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/.spread_sheet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/.spread_sheet.ini -------------------------------------------------------------------------------- /Chapter11/FleaDSO/.spreadsheet_view.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/.spreadsheet_view.ini -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/._Real_._Math_.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/._Real_._Math_.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL.edn -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.fdc: -------------------------------------------------------------------------------- 1 | ###==== Start Configuration 2 | 3 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.jhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL.jhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.lpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL.lpc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.naf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL.naf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL.sbx -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.sort: -------------------------------------------------------------------------------- 1 | ADC_PLL.vhd 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.srp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL.srp -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL.sym -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL_generate.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL_generate.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/ADC_PLL_tmpl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/ADC_PLL_tmpl.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/generate_core.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/generate_core.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/generate_ngd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/generate_ngd.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ADC_PLL/msg_file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ADC_PLL/msg_file.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/._Real_._Math_.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/._Real_._Math_.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.cst: -------------------------------------------------------------------------------- 1 | Date=02/17/2018 2 | Time=21:14:56 3 | 4 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.edn -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.fdc: -------------------------------------------------------------------------------- 1 | ###==== Start Configuration 2 | 3 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.jhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.jhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.lpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.lpc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.naf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.naf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.sbx -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.sort: -------------------------------------------------------------------------------- 1 | DSO_RAMBUFFER_CH1.vhd 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.srp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.srp -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.sym -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1_tmpl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/DSO_RAMBUFFER_CH1_tmpl.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/generate_core.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/generate_core.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/generate_ngd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/generate_ngd.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/msg_file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DSO_RAMBUFFER_CH1/msg_file.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/._Real_._Math_.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/._Real_._Math_.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.edn -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.fdc: -------------------------------------------------------------------------------- 1 | ###==== Start Configuration 2 | 3 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.jhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.jhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.lpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.lpc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.naf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.naf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.sbx -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.sort: -------------------------------------------------------------------------------- 1 | DVI_clkgen.vhd 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.srp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.srp -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.sym -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen_generate.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen_generate.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen_tmpl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/DVI_clkgen_tmpl.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/generate_core.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/generate_core.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/generate_ngd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/generate_ngd.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/DVI_clkgen/msg_file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/DVI_clkgen/msg_file.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO.ldf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO.lpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO.lpf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/._Real_._Math_.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/._Real_._Math_.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/.build_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/.build_status -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/.recordref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/.recordref_modgen: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/.vdbs/FleaFPGA_Ohm_A5_rtl.vdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/.vdbs/FleaFPGA_Ohm_A5_rtl.vdb -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/.vdbs/FleaFPGA_Ohm_A5_tech.vdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/.vdbs/FleaFPGA_Ohm_A5_tech.vdb -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/.vdbs/dbStat.txt: -------------------------------------------------------------------------------- 1 | FleaFPGA_Ohm_A5_rtl.vdb 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/ADC_PLL.ngo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/ADC_PLL.ngo -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/AutoConstraint_FleaFPGA_Ohm_A5.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/AutoConstraint_FleaFPGA_Ohm_A5.sdc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/DSO_RAMBUFFER_CH1.ngo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/DSO_RAMBUFFER_CH1.ngo -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO-Fast_Prgm.vme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO-Fast_Prgm.vme -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO.xcf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.alt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.alt -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.arearep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.arearep -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.areasrr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.areasrr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.bgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.bgn -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.bit -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.dir/5_1.ncd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.dir/5_1.ncd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.dir/5_1.pad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.dir/5_1.pad -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.dir/5_1.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.dir/5_1.par -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.dir/5_1_par.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.dir/5_1_par.asd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.drc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.drc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.edi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.edi -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.fse: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.htm -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.lpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.lpf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.lsedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.lsedata -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.mrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.mrp -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.ncd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.ncd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.ngd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.ngd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.ngo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.ngo -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.p2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.p2t -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.p3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.p3t -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.pad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.pad -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.par -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.prf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.pt -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srm -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.srs -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.t2b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO.t2b -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_bgn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_bgn.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_cck.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_cck.rpt -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_lattice.synproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_lattice.synproj -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_map.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_map.asd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_map.cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_map.cam -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_map.hrr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_map.hrr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_map.ncd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_map.ncd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_mrp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_mrp.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_ngd.asd: -------------------------------------------------------------------------------- 1 | [ActiveSupport NGD] 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_pad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_pad.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_par.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_par.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_scck.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_scck.rpt -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_summary.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_synplify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_synplify.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_synplify.lpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_synplify.lpf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_synplify.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaDSO_FleaDSO_synplify.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaFPGA_Ohm_A5_drc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaFPGA_Ohm_A5_drc.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaFPGA_Ohm_A5_lse.twr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaFPGA_Ohm_A5_lse.twr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaFPGA_Ohm_A5_lse_lsetwr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaFPGA_Ohm_A5_lse_lsetwr.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/FleaFPGA_Ohm_A5_prim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/FleaFPGA_Ohm_A5_prim.v -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/automake.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/automake.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/backup/FleaDSO_FleaDSO.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/backup/FleaDSO_FleaDSO.srr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/dm/FleaDSO_FleaDSO_comp.xdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/dm/FleaDSO_FleaDSO_comp.xdm -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/dm/layer0.xdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/dm/layer0.xdm -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/hdla_gen_hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/hdla_gen_hierarchy.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/message.xml -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/run_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/run_options.txt -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/scratchproject.prs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/scratchproject.prs -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/stdout.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/stdout.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/stdout.log.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/stdout.log.bak -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synlog.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synlog/FleaDSO_FleaDSO_compiler.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synlog/FleaDSO_FleaDSO_compiler.srr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synlog/FleaDSO_FleaDSO_premap.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synlog/FleaDSO_FleaDSO_premap.srr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synlog/FleaDSO_FleaDSO_premap.szr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synlog/FleaDSO_FleaDSO_premap.szr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synlog/layer0.tlg.rptmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synlog/layer0.tlg.rptmap -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synlog/report/FleaDSO_FleaDSO_fpga_mapper_errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synlog/report/FleaDSO_FleaDSO_premap_errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synlog/syntax.log.rptmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synlog/syntax.log.rptmap -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntax.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntax.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synthesis.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synthesis.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synthesis_lse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synthesis_lse.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/FleaDSO_FleaDSO.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/FleaDSO_FleaDSO.plg -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/FleaDSO_FleaDSO_srr.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/FleaDSO_FleaDSO_srr.htm -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/FleaDSO_FleaDSO_toc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/FleaDSO_FleaDSO_toc.htm -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/closed.png -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_compiler.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_compiler.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_fpga_mapper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_fpga_mapper.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_hdl_info_gen.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_hdl_info_gen.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_multi_srs_gen.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_multi_srs_gen.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_premap.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/cmdrec_premap.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/hdlorder.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/hdlorder.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/open.png -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/run_option.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/run_option.xml -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/statusReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/statusReport.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/syntmp/traplog.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/syntmp/traplog.tlg -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/.cckTransfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/.cckTransfer -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_comp.fdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_comp.fdep -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_comp.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_comp.srs -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_m.srm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_m.srm -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_m_srm/1.srm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_m_srm/1.srm -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_mult.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_mult.srs -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_prem.fse: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_prem.srd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/FleaDSO_FleaDSO_prem.srd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/_mh_info: -------------------------------------------------------------------------------- 1 | |1| 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/layer0.fdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/layer0.fdep -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/layer0.fdeporig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/layer0.fdeporig -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/layer0.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/layer0.srs -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/synwork/layer0.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/synwork/layer0.tlg -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/traplog.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/traplog.tlg -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/xxx_lse_cp_file_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/xxx_lse_cp_file_list -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO/xxx_lse_sign_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO/xxx_lse_sign_file -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO1.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO1.sty -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_FleaDSO_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_FleaDSO_summary.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcl.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140619165454.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140619165454.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140619165607.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140619165607.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140619165627.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140619165627.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140620032746.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140620032746.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140621031707.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140621031707.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140623194617.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn140623194617.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn180218002832.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn180218002832.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn180220003625.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn180220003625.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn180220113513.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn180220113513.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaDSO_tcr.dir/pn181003001742.tcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/FleaDSO_tcr.dir/pn181003001742.tcr -------------------------------------------------------------------------------- /Chapter11/FleaDSO/FleaFPGA_Ohm_A5.ccl: -------------------------------------------------------------------------------- 1 | VERSION=20110520 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/._Real_._Math_.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/._Real_._Math_.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out.edn -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.fdc: -------------------------------------------------------------------------------- 1 | ###==== Start Configuration 2 | 3 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.jhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out.jhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.lpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out.lpc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.naf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out.naf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out.sbx -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.sort: -------------------------------------------------------------------------------- 1 | ddr_out.vhd 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.srp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out.srp -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out.sym -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out_generate.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out_generate.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out_tmpl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out_tmpl.v -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/ddr_out_tmpl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/ddr_out_tmpl.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/generate_core.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/generate_core.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/generate_ngd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/generate_ngd.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/ddr_out/msg_file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/ddr_out/msg_file.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/hdla_gen_hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/hdla_gen_hierarchy.html -------------------------------------------------------------------------------- /Chapter11/FleaDSO/promote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/promote.xml -------------------------------------------------------------------------------- /Chapter11/FleaDSO/reportview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/reportview.xml -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/._Real_._Math_.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/._Real_._Math_.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL.edn -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.ipx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL.ipx -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.jhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL.jhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.lpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL.lpc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.naf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL.naf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.sort: -------------------------------------------------------------------------------- 1 | ADC_PLL.vhd 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.srp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL.srp -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL.sym -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL_generate.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL_generate.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/ADC_PLL_tmpl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/ADC_PLL_tmpl.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.edn -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.ipx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.ipx -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.jhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.jhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.lpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.lpc -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.naf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.naf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.sort: -------------------------------------------------------------------------------- 1 | DSO_RAMBUFFER_CH1.vhd 2 | -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.srp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.srp -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.sym -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1_generate.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1_generate.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1_tmpl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DSO_RAMBUFFER_CH1_tmpl.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/DVI_D.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/DVI_D.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/FleaFPGA_2v5_DSO_toplevel.lpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/FleaFPGA_2v5_DSO_toplevel.lpf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/FleaFPGA_2v5_DSO_toplevel.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/FleaFPGA_2v5_DSO_toplevel.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/FleaFPGA_DSO.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/FleaFPGA_DSO.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/FleaFPGA_Ohm_A5.lpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/FleaFPGA_Ohm_A5.lpf -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/FleaFPGA_Ohm_A5_Top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/FleaFPGA_Ohm_A5_Top.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/Flea_zero_A2_top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/Flea_zero_A2_top.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/Simple_VGA_CRTC.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/Simple_VGA_CRTC.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/TDMS_encoder.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/TDMS_encoder.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/VGA.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/VGA.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/generate_core.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/generate_core.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/generate_ngd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/generate_ngd.tcl -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/msg_file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/msg_file.log -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/simple_uart.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/simple_uart.vhd -------------------------------------------------------------------------------- /Chapter11/FleaDSO/source/tb_DSO_RAMBUFFER_CH1_tmpl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/FleaDSO/source/tb_DSO_RAMBUFFER_CH1_tmpl.vhd -------------------------------------------------------------------------------- /Chapter11/basic_oscilloscope/Basic_oscilloscope.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/basic_oscilloscope/Basic_oscilloscope.pro -------------------------------------------------------------------------------- /Chapter11/basic_oscilloscope/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/basic_oscilloscope/main.cpp -------------------------------------------------------------------------------- /Chapter11/basic_oscilloscope/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/basic_oscilloscope/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter11/basic_oscilloscope/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/basic_oscilloscope/mainwindow.h -------------------------------------------------------------------------------- /Chapter11/basic_oscilloscope/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/Chapter11/basic_oscilloscope/mainwindow.ui -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Embedded-Programming-with-CPP-17/HEAD/README.md --------------------------------------------------------------------------------