├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── doc ├── coding-style.md ├── eg-esp8266.md ├── eg-stm32-3g.md ├── embedded-framework-gateway.md ├── embedded-framework-object.md ├── embedded-framework-summary.md └── image │ ├── framework-summary.jpg │ ├── normal-IOT-structure.jpg │ └── pando-IOT-structure.jpg ├── example ├── esp8266 │ ├── Makefile │ ├── peripheral │ │ ├── Makefile │ │ ├── driver │ │ │ ├── Makefile │ │ │ ├── adc.c │ │ │ ├── adc.h │ │ │ ├── gpio.h │ │ │ ├── gpio16.c │ │ │ ├── gpio16.h │ │ │ ├── i2c.c │ │ │ ├── i2c.h │ │ │ ├── key.c │ │ │ ├── key.h │ │ │ ├── pwm.c │ │ │ ├── pwm.h │ │ │ ├── readme.txt │ │ │ ├── spi.c │ │ │ ├── spi.h │ │ │ ├── spi_register.h │ │ │ ├── tisan_gpio.c │ │ │ ├── tisan_gpio.h │ │ │ ├── tisan_gpio_intr.c │ │ │ ├── tisan_gpio_intr.h │ │ │ ├── uart.c │ │ │ ├── uart.h │ │ │ └── uart_register.h │ │ ├── oled_font.h │ │ ├── peri_dht1122.c │ │ ├── peri_dht1122.h │ │ ├── peri_i2c_oled.c │ │ ├── peri_i2c_oled.h │ │ ├── peri_iaq.c │ │ ├── peri_iaq.h │ │ ├── peri_jdq.c │ │ ├── peri_jdq.h │ │ ├── peri_key.c │ │ ├── peri_key.h │ │ ├── peri_ldr.c │ │ ├── peri_ldr.h │ │ ├── peri_led.c │ │ ├── peri_led.h │ │ ├── peri_motor.c │ │ ├── peri_motor.h │ │ ├── peri_pm25.c │ │ ├── peri_pm25.h │ │ ├── peri_rgb_light.c │ │ ├── peri_rgb_light.h │ │ └── readme.txt │ ├── readme.txt │ ├── user │ │ ├── Makefile │ │ ├── device_config.h │ │ ├── object │ │ │ ├── Makefile │ │ │ ├── air.c │ │ │ ├── air.h │ │ │ ├── c_motor.c │ │ │ ├── c_motor.h │ │ │ ├── humiture.c │ │ │ ├── humiture.h │ │ │ ├── led.c │ │ │ ├── led.h │ │ │ ├── motor.c │ │ │ ├── motor.h │ │ │ ├── plug.c │ │ │ ├── plug.h │ │ │ ├── pm25.c │ │ │ ├── pm25.h │ │ │ ├── readme.txt │ │ │ ├── temperatrure.c │ │ │ └── temperature.h │ │ ├── readme.txt │ │ ├── user_main.c │ │ ├── wifi_config.c │ │ └── wifi_config.h │ └── util │ │ ├── Makefile │ │ ├── cert.h │ │ ├── converter.c │ │ ├── converter.h │ │ ├── httpclient.c │ │ ├── httpclient.h │ │ ├── pando_lan_bind.c │ │ ├── pando_lan_bind.h │ │ ├── private_key.h │ │ └── readme.txt └── stm32 │ ├── driver │ ├── cm3_bitband.h │ ├── flash.c │ ├── flash.h │ ├── gsm.c │ ├── gsm.h │ ├── jdqs.c │ ├── jdqs.h │ ├── malloc.c │ ├── malloc.h │ ├── sim5360.c │ ├── sim5360.h │ ├── timer4.c │ ├── timer4.h │ ├── usart1.c │ ├── usart1.h │ ├── usart2.c │ └── usart2.h │ ├── main.c │ ├── objects │ ├── led.c │ └── led.h │ └── util │ ├── delay.c │ ├── delay.h │ ├── fifo.c │ ├── fifo.h │ ├── task.c │ └── task.h └── framework ├── Makefile ├── gateway ├── Makefile ├── gateway_defs.h ├── mqtt │ ├── .output │ │ └── eagle │ │ │ └── debug │ │ │ └── obj │ │ │ ├── mqtt.d.1000 │ │ │ ├── mqtt.d.1004 │ │ │ └── mqtt.d.8428 │ ├── Makefile │ ├── debug.h │ ├── mqtt.c │ ├── mqtt.h │ ├── mqtt_msg.c │ ├── mqtt_msg.h │ ├── proto.c │ ├── proto.h │ ├── queue.c │ ├── queue.h │ ├── ringbuf.c │ ├── ringbuf.h │ ├── typedef.h │ ├── utils.c │ └── utils.h ├── pando_channel.c ├── pando_channel.h ├── pando_cloud_access.c ├── pando_cloud_access.h ├── pando_device_login.c ├── pando_device_login.h ├── pando_device_register.c ├── pando_device_register.h ├── pando_gateway.c ├── pando_gateway.h ├── pando_zero_device.c └── pando_zero_device.h ├── lib ├── Makefile ├── cert.h ├── converter.c ├── converter.h ├── json │ ├── Makefile │ ├── json.h │ ├── jsonparse.c │ ├── jsonparse.h │ ├── jsontree.c │ └── jsontree.h ├── pando_json.c ├── pando_json.h └── private_key.h ├── pando_framework.c ├── pando_framework.h ├── platform ├── Makefile ├── include │ ├── pando_net_http.h │ ├── pando_net_tcp.h │ ├── pando_storage_interface.h │ ├── pando_sys.h │ ├── pando_sys.h.rej │ ├── pando_timer.h │ ├── pando_types.h │ └── platform_miscellaneous_interface.h └── src │ ├── Makefile │ ├── at_stm32 │ ├── pando_net_http.c │ ├── pando_net_tcp.c │ ├── pando_storage_interface.c │ ├── pando_timer.c │ └── platform_miscellaneous_interface.c │ └── esp8266 │ ├── Makefile │ ├── pando_net_http.c │ ├── pando_net_tcp.c │ ├── pando_storage_interface.c │ ├── pando_timer.c │ └── platform_miscellaneous_interface.c ├── protocol ├── Makefile ├── common_functions.c ├── common_functions.h ├── pando_endian.c ├── pando_endian.h ├── pando_machine.c ├── pando_machine.h ├── pando_protocol.c ├── pando_protocol.h ├── readme.txt ├── sub_device_protocol.c ├── sub_device_protocol.c.rej └── sub_device_protocol.h ├── readme.txt └── subdevice ├── Makefile ├── pando_command.c ├── pando_command.h ├── pando_event.c ├── pando_event.h ├── pando_object.c ├── pando_object.h ├── pando_subdevice.c └── pando_subdevice.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/README.md -------------------------------------------------------------------------------- /doc/coding-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/doc/coding-style.md -------------------------------------------------------------------------------- /doc/eg-esp8266.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/doc/eg-esp8266.md -------------------------------------------------------------------------------- /doc/eg-stm32-3g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/doc/eg-stm32-3g.md -------------------------------------------------------------------------------- /doc/embedded-framework-gateway.md: -------------------------------------------------------------------------------- 1 | # embedded-framework gateway 2 | -------------------------------------------------------------------------------- /doc/embedded-framework-object.md: -------------------------------------------------------------------------------- 1 | # subdevice object abstraction 2 | -------------------------------------------------------------------------------- /doc/embedded-framework-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/doc/embedded-framework-summary.md -------------------------------------------------------------------------------- /doc/image/framework-summary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/doc/image/framework-summary.jpg -------------------------------------------------------------------------------- /doc/image/normal-IOT-structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/doc/image/normal-IOT-structure.jpg -------------------------------------------------------------------------------- /doc/image/pando-IOT-structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/doc/image/pando-IOT-structure.jpg -------------------------------------------------------------------------------- /example/esp8266/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/Makefile -------------------------------------------------------------------------------- /example/esp8266/peripheral/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/Makefile -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/Makefile -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/adc.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/adc.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/gpio.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/gpio16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/gpio16.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/gpio16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/gpio16.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/i2c.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/i2c.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/key.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/key.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/pwm.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/pwm.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/spi.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/spi.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/spi_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/spi_register.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/tisan_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/tisan_gpio.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/tisan_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/tisan_gpio.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/tisan_gpio_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/tisan_gpio_intr.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/tisan_gpio_intr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/tisan_gpio_intr.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/uart.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/uart.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/driver/uart_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/driver/uart_register.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/oled_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/oled_font.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_dht1122.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_dht1122.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_dht1122.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_dht1122.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_i2c_oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_i2c_oled.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_i2c_oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_i2c_oled.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_iaq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_iaq.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_iaq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_iaq.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_jdq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_jdq.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_jdq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_jdq.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_key.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_key.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_ldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_ldr.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_ldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_ldr.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_led.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_led.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_motor.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_motor.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_pm25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_pm25.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_pm25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_pm25.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_rgb_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_rgb_light.c -------------------------------------------------------------------------------- /example/esp8266/peripheral/peri_rgb_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/peripheral/peri_rgb_light.h -------------------------------------------------------------------------------- /example/esp8266/peripheral/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/esp8266/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/readme.txt -------------------------------------------------------------------------------- /example/esp8266/user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/Makefile -------------------------------------------------------------------------------- /example/esp8266/user/device_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/device_config.h -------------------------------------------------------------------------------- /example/esp8266/user/object/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/Makefile -------------------------------------------------------------------------------- /example/esp8266/user/object/air.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/air.c -------------------------------------------------------------------------------- /example/esp8266/user/object/air.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/air.h -------------------------------------------------------------------------------- /example/esp8266/user/object/c_motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/c_motor.c -------------------------------------------------------------------------------- /example/esp8266/user/object/c_motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/c_motor.h -------------------------------------------------------------------------------- /example/esp8266/user/object/humiture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/humiture.c -------------------------------------------------------------------------------- /example/esp8266/user/object/humiture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/humiture.h -------------------------------------------------------------------------------- /example/esp8266/user/object/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/led.c -------------------------------------------------------------------------------- /example/esp8266/user/object/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/led.h -------------------------------------------------------------------------------- /example/esp8266/user/object/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/motor.c -------------------------------------------------------------------------------- /example/esp8266/user/object/motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/motor.h -------------------------------------------------------------------------------- /example/esp8266/user/object/plug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/plug.c -------------------------------------------------------------------------------- /example/esp8266/user/object/plug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/plug.h -------------------------------------------------------------------------------- /example/esp8266/user/object/pm25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/pm25.c -------------------------------------------------------------------------------- /example/esp8266/user/object/pm25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/pm25.h -------------------------------------------------------------------------------- /example/esp8266/user/object/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/esp8266/user/object/temperatrure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/temperatrure.c -------------------------------------------------------------------------------- /example/esp8266/user/object/temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/object/temperature.h -------------------------------------------------------------------------------- /example/esp8266/user/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/esp8266/user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/user_main.c -------------------------------------------------------------------------------- /example/esp8266/user/wifi_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/wifi_config.c -------------------------------------------------------------------------------- /example/esp8266/user/wifi_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/user/wifi_config.h -------------------------------------------------------------------------------- /example/esp8266/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/Makefile -------------------------------------------------------------------------------- /example/esp8266/util/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/cert.h -------------------------------------------------------------------------------- /example/esp8266/util/converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/converter.c -------------------------------------------------------------------------------- /example/esp8266/util/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/converter.h -------------------------------------------------------------------------------- /example/esp8266/util/httpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/httpclient.c -------------------------------------------------------------------------------- /example/esp8266/util/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/httpclient.h -------------------------------------------------------------------------------- /example/esp8266/util/pando_lan_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/pando_lan_bind.c -------------------------------------------------------------------------------- /example/esp8266/util/pando_lan_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/pando_lan_bind.h -------------------------------------------------------------------------------- /example/esp8266/util/private_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/esp8266/util/private_key.h -------------------------------------------------------------------------------- /example/esp8266/util/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/stm32/driver/cm3_bitband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/cm3_bitband.h -------------------------------------------------------------------------------- /example/stm32/driver/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/flash.c -------------------------------------------------------------------------------- /example/stm32/driver/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/flash.h -------------------------------------------------------------------------------- /example/stm32/driver/gsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/gsm.c -------------------------------------------------------------------------------- /example/stm32/driver/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/gsm.h -------------------------------------------------------------------------------- /example/stm32/driver/jdqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/jdqs.c -------------------------------------------------------------------------------- /example/stm32/driver/jdqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/jdqs.h -------------------------------------------------------------------------------- /example/stm32/driver/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/malloc.c -------------------------------------------------------------------------------- /example/stm32/driver/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/malloc.h -------------------------------------------------------------------------------- /example/stm32/driver/sim5360.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/sim5360.c -------------------------------------------------------------------------------- /example/stm32/driver/sim5360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/sim5360.h -------------------------------------------------------------------------------- /example/stm32/driver/timer4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/timer4.c -------------------------------------------------------------------------------- /example/stm32/driver/timer4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/timer4.h -------------------------------------------------------------------------------- /example/stm32/driver/usart1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/usart1.c -------------------------------------------------------------------------------- /example/stm32/driver/usart1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/usart1.h -------------------------------------------------------------------------------- /example/stm32/driver/usart2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/usart2.c -------------------------------------------------------------------------------- /example/stm32/driver/usart2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/driver/usart2.h -------------------------------------------------------------------------------- /example/stm32/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/main.c -------------------------------------------------------------------------------- /example/stm32/objects/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/objects/led.c -------------------------------------------------------------------------------- /example/stm32/objects/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/objects/led.h -------------------------------------------------------------------------------- /example/stm32/util/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/util/delay.c -------------------------------------------------------------------------------- /example/stm32/util/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/util/delay.h -------------------------------------------------------------------------------- /example/stm32/util/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/util/fifo.c -------------------------------------------------------------------------------- /example/stm32/util/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/util/fifo.h -------------------------------------------------------------------------------- /example/stm32/util/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/util/task.c -------------------------------------------------------------------------------- /example/stm32/util/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/example/stm32/util/task.h -------------------------------------------------------------------------------- /framework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/Makefile -------------------------------------------------------------------------------- /framework/gateway/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/Makefile -------------------------------------------------------------------------------- /framework/gateway/gateway_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/gateway_defs.h -------------------------------------------------------------------------------- /framework/gateway/mqtt/.output/eagle/debug/obj/mqtt.d.1000: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gateway/mqtt/.output/eagle/debug/obj/mqtt.d.1004: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gateway/mqtt/.output/eagle/debug/obj/mqtt.d.8428: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gateway/mqtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/Makefile -------------------------------------------------------------------------------- /framework/gateway/mqtt/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/debug.h -------------------------------------------------------------------------------- /framework/gateway/mqtt/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/mqtt.c -------------------------------------------------------------------------------- /framework/gateway/mqtt/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/mqtt.h -------------------------------------------------------------------------------- /framework/gateway/mqtt/mqtt_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/mqtt_msg.c -------------------------------------------------------------------------------- /framework/gateway/mqtt/mqtt_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/mqtt_msg.h -------------------------------------------------------------------------------- /framework/gateway/mqtt/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/proto.c -------------------------------------------------------------------------------- /framework/gateway/mqtt/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/proto.h -------------------------------------------------------------------------------- /framework/gateway/mqtt/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/queue.c -------------------------------------------------------------------------------- /framework/gateway/mqtt/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/queue.h -------------------------------------------------------------------------------- /framework/gateway/mqtt/ringbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/ringbuf.c -------------------------------------------------------------------------------- /framework/gateway/mqtt/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/ringbuf.h -------------------------------------------------------------------------------- /framework/gateway/mqtt/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/typedef.h -------------------------------------------------------------------------------- /framework/gateway/mqtt/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/utils.c -------------------------------------------------------------------------------- /framework/gateway/mqtt/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/mqtt/utils.h -------------------------------------------------------------------------------- /framework/gateway/pando_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_channel.c -------------------------------------------------------------------------------- /framework/gateway/pando_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_channel.h -------------------------------------------------------------------------------- /framework/gateway/pando_cloud_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_cloud_access.c -------------------------------------------------------------------------------- /framework/gateway/pando_cloud_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_cloud_access.h -------------------------------------------------------------------------------- /framework/gateway/pando_device_login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_device_login.c -------------------------------------------------------------------------------- /framework/gateway/pando_device_login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_device_login.h -------------------------------------------------------------------------------- /framework/gateway/pando_device_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_device_register.c -------------------------------------------------------------------------------- /framework/gateway/pando_device_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_device_register.h -------------------------------------------------------------------------------- /framework/gateway/pando_gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_gateway.c -------------------------------------------------------------------------------- /framework/gateway/pando_gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_gateway.h -------------------------------------------------------------------------------- /framework/gateway/pando_zero_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_zero_device.c -------------------------------------------------------------------------------- /framework/gateway/pando_zero_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/gateway/pando_zero_device.h -------------------------------------------------------------------------------- /framework/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/Makefile -------------------------------------------------------------------------------- /framework/lib/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/cert.h -------------------------------------------------------------------------------- /framework/lib/converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/converter.c -------------------------------------------------------------------------------- /framework/lib/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/converter.h -------------------------------------------------------------------------------- /framework/lib/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/json/Makefile -------------------------------------------------------------------------------- /framework/lib/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/json/json.h -------------------------------------------------------------------------------- /framework/lib/json/jsonparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/json/jsonparse.c -------------------------------------------------------------------------------- /framework/lib/json/jsonparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/json/jsonparse.h -------------------------------------------------------------------------------- /framework/lib/json/jsontree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/json/jsontree.c -------------------------------------------------------------------------------- /framework/lib/json/jsontree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/json/jsontree.h -------------------------------------------------------------------------------- /framework/lib/pando_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/pando_json.c -------------------------------------------------------------------------------- /framework/lib/pando_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/pando_json.h -------------------------------------------------------------------------------- /framework/lib/private_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/lib/private_key.h -------------------------------------------------------------------------------- /framework/pando_framework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/pando_framework.c -------------------------------------------------------------------------------- /framework/pando_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/pando_framework.h -------------------------------------------------------------------------------- /framework/platform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/Makefile -------------------------------------------------------------------------------- /framework/platform/include/pando_net_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/include/pando_net_http.h -------------------------------------------------------------------------------- /framework/platform/include/pando_net_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/include/pando_net_tcp.h -------------------------------------------------------------------------------- /framework/platform/include/pando_storage_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/include/pando_storage_interface.h -------------------------------------------------------------------------------- /framework/platform/include/pando_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/include/pando_sys.h -------------------------------------------------------------------------------- /framework/platform/include/pando_sys.h.rej: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/include/pando_sys.h.rej -------------------------------------------------------------------------------- /framework/platform/include/pando_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/include/pando_timer.h -------------------------------------------------------------------------------- /framework/platform/include/pando_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/include/pando_types.h -------------------------------------------------------------------------------- /framework/platform/include/platform_miscellaneous_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/include/platform_miscellaneous_interface.h -------------------------------------------------------------------------------- /framework/platform/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/Makefile -------------------------------------------------------------------------------- /framework/platform/src/at_stm32/pando_net_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/at_stm32/pando_net_http.c -------------------------------------------------------------------------------- /framework/platform/src/at_stm32/pando_net_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/at_stm32/pando_net_tcp.c -------------------------------------------------------------------------------- /framework/platform/src/at_stm32/pando_storage_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/at_stm32/pando_storage_interface.c -------------------------------------------------------------------------------- /framework/platform/src/at_stm32/pando_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/at_stm32/pando_timer.c -------------------------------------------------------------------------------- /framework/platform/src/at_stm32/platform_miscellaneous_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/at_stm32/platform_miscellaneous_interface.c -------------------------------------------------------------------------------- /framework/platform/src/esp8266/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/esp8266/Makefile -------------------------------------------------------------------------------- /framework/platform/src/esp8266/pando_net_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/esp8266/pando_net_http.c -------------------------------------------------------------------------------- /framework/platform/src/esp8266/pando_net_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/esp8266/pando_net_tcp.c -------------------------------------------------------------------------------- /framework/platform/src/esp8266/pando_storage_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/esp8266/pando_storage_interface.c -------------------------------------------------------------------------------- /framework/platform/src/esp8266/pando_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/esp8266/pando_timer.c -------------------------------------------------------------------------------- /framework/platform/src/esp8266/platform_miscellaneous_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/platform/src/esp8266/platform_miscellaneous_interface.c -------------------------------------------------------------------------------- /framework/protocol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/Makefile -------------------------------------------------------------------------------- /framework/protocol/common_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/common_functions.c -------------------------------------------------------------------------------- /framework/protocol/common_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/common_functions.h -------------------------------------------------------------------------------- /framework/protocol/pando_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/pando_endian.c -------------------------------------------------------------------------------- /framework/protocol/pando_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/pando_endian.h -------------------------------------------------------------------------------- /framework/protocol/pando_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/pando_machine.c -------------------------------------------------------------------------------- /framework/protocol/pando_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/pando_machine.h -------------------------------------------------------------------------------- /framework/protocol/pando_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/pando_protocol.c -------------------------------------------------------------------------------- /framework/protocol/pando_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/pando_protocol.h -------------------------------------------------------------------------------- /framework/protocol/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/protocol/sub_device_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/sub_device_protocol.c -------------------------------------------------------------------------------- /framework/protocol/sub_device_protocol.c.rej: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/sub_device_protocol.c.rej -------------------------------------------------------------------------------- /framework/protocol/sub_device_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/protocol/sub_device_protocol.h -------------------------------------------------------------------------------- /framework/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/subdevice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/Makefile -------------------------------------------------------------------------------- /framework/subdevice/pando_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/pando_command.c -------------------------------------------------------------------------------- /framework/subdevice/pando_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/pando_command.h -------------------------------------------------------------------------------- /framework/subdevice/pando_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/pando_event.c -------------------------------------------------------------------------------- /framework/subdevice/pando_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/pando_event.h -------------------------------------------------------------------------------- /framework/subdevice/pando_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/pando_object.c -------------------------------------------------------------------------------- /framework/subdevice/pando_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/pando_object.h -------------------------------------------------------------------------------- /framework/subdevice/pando_subdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/pando_subdevice.c -------------------------------------------------------------------------------- /framework/subdevice/pando_subdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandoCloud/pando-embedded-framework/HEAD/framework/subdevice/pando_subdevice.h --------------------------------------------------------------------------------