Просмотр исходного кода

example: move spi master example to a subfolder

Michael (XIAO Xufeng) 6 лет назад
Родитель
Сommit
0f1041cc04

+ 0 - 0
examples/peripherals/spi_master/CMakeLists.txt → examples/peripherals/spi_master/lcd/CMakeLists.txt


+ 0 - 0
examples/peripherals/spi_master/Makefile → examples/peripherals/spi_master/lcd/Makefile


+ 0 - 0
examples/peripherals/spi_master/README.md → examples/peripherals/spi_master/lcd/README.md


+ 0 - 0
examples/peripherals/spi_master/components/tjpgd/CMakeLists.txt → examples/peripherals/spi_master/lcd/components/tjpgd/CMakeLists.txt


+ 0 - 0
examples/peripherals/spi_master/components/tjpgd/component.mk → examples/peripherals/spi_master/lcd/components/tjpgd/component.mk


+ 0 - 0
examples/peripherals/spi_master/components/tjpgd/include/tjpgd.h → examples/peripherals/spi_master/lcd/components/tjpgd/include/tjpgd.h


+ 0 - 0
examples/peripherals/spi_master/components/tjpgd/src/tjpgd.c → examples/peripherals/spi_master/lcd/components/tjpgd/src/tjpgd.c


+ 0 - 0
examples/peripherals/spi_master/main/CMakeLists.txt → examples/peripherals/spi_master/lcd/main/CMakeLists.txt


+ 0 - 0
examples/peripherals/spi_master/main/Kconfig.projbuild → examples/peripherals/spi_master/lcd/main/Kconfig.projbuild


+ 0 - 0
examples/peripherals/spi_master/main/component.mk → examples/peripherals/spi_master/lcd/main/component.mk


+ 0 - 0
examples/peripherals/spi_master/main/decode_image.c → examples/peripherals/spi_master/lcd/main/decode_image.c


+ 8 - 0
examples/peripherals/spi_master/main/decode_image.h → examples/peripherals/spi_master/lcd/main/decode_image.h

@@ -1,3 +1,11 @@
+/*
+   This example code is in the Public Domain (or CC0 licensed, at your option.)
+
+   Unless required by applicable law or agreed to in writing, this
+   software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+   CONDITIONS OF ANY KIND, either express or implied.
+*/
+
 #pragma once
 #include <stdint.h>
 #include "esp_err.h"

+ 0 - 0
examples/peripherals/spi_master/main/image.jpg → examples/peripherals/spi_master/lcd/main/image.jpg


+ 0 - 0
examples/peripherals/spi_master/main/pretty_effect.c → examples/peripherals/spi_master/lcd/main/pretty_effect.c


+ 8 - 0
examples/peripherals/spi_master/main/pretty_effect.h → examples/peripherals/spi_master/lcd/main/pretty_effect.h

@@ -1,3 +1,11 @@
+/*
+   This example code is in the Public Domain (or CC0 licensed, at your option.)
+
+   Unless required by applicable law or agreed to in writing, this
+   software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+   CONDITIONS OF ANY KIND, either express or implied.
+*/
+
 #pragma once
 #include <stdint.h>
 #include "esp_err.h"

+ 0 - 0
examples/peripherals/spi_master/main/spi_master_example_main.c → examples/peripherals/spi_master/lcd/main/spi_master_example_main.c