diff --git a/6_axis_demo.c b/6_axis_demo.c old mode 100755 new mode 100644 diff --git a/BUILD.gn b/BUILD.gn old mode 100755 new mode 100644 diff --git a/README.md b/README.md index 4ff9bf3a2bd681bb073f1f8adbdf6a830a55624b..c2ceb7acdcc1e76fa1c29640ce8b4fe1650e69fa 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,31 @@ # test -#### 介绍 -开源大师兄代码测试框架 +## 介绍 +本仓库存放开源大师兄项目的测试框架代码。 -#### 软件架构 -测试架构说明 +或者,使用经过整理的测试框架代码,见 https://gitee.com/liangkzgitee/TestFwk.git +## 使用 -#### 安装教程 +将本仓库代码或者上面的 TestFwk 仓库的代码通过 git 命令下载到项目的 //applications/sample/OpenBrother/ 目录下,然后用文本编辑器打开 //applications/sample/BUILD.gn 文件,根据当前实际需要编译的项目来打开对应的编译目标,如下: -1. xxxx -2. xxxx -3. xxxx +``` +lite_component("app") { + "OpenBrother:app", # 编译开源大师兄的固件,打开这个编译目标 + ] +} +``` -#### 使用说明 +比如打开编译开源大师兄的固件的编译目标后,可以再进入 OpenBrother 子目录,打开其中的BUILD.gn文件,进一步打开要编译的目标,如下: -1. xxxx -2. xxxx -3. xxxx +``` +lite_component("app") { + features = [ # 注意:下面两个编译目标同时打开会提示编译异常 + "TestFwk:app", # 编译开源大师兄的工厂测试固件,打开这个编译目标 +# "pzstudio:app", # 编译开源大师兄的出厂固件(带Python功能),打开这个编译目标 +# "PzCar:pzcar_demo", # 编译开源大师兄的PzCar项目固件,打开这个编译目标 + ] +} +``` -#### 参与贡献 - -1. Fork 本仓库 -2. 新建 Feat_xxx 分支 -3. 提交代码 -4. 新建 Pull Request - - -#### 特技 - -1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md -2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) -3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 -4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 -5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) -6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) +更详细的使用说明,见 [README.md](https://gitee.com/Open-Brother/oh4ob/blob/master/README.md) \ No newline at end of file diff --git a/adc_demo.c b/adc_demo.c old mode 100755 new mode 100644 diff --git a/examples/BUILD.gn b/examples/BUILD.gn old mode 100755 new mode 100644 diff --git a/examples/ssd1306_demo.c b/examples/ssd1306_demo.c old mode 100755 new mode 100644 diff --git a/examples/ssd1306_tests.c b/examples/ssd1306_tests.c old mode 100755 new mode 100644 diff --git a/examples/ssd1306_tests.h b/examples/ssd1306_tests.h old mode 100755 new mode 100644 diff --git a/gpio.c b/gpio.c old mode 100755 new mode 100644 diff --git a/i2caht20/BUILD.gn b/i2caht20/BUILD.gn old mode 100755 new mode 100644 diff --git a/i2caht20/README.md b/i2caht20/README.md old mode 100755 new mode 100644 diff --git a/i2caht20/src/BUILD.gn b/i2caht20/src/BUILD.gn old mode 100755 new mode 100644 diff --git a/i2caht20/src/aht20.c b/i2caht20/src/aht20.c old mode 100755 new mode 100644 diff --git a/i2caht20/src/aht20.h b/i2caht20/src/aht20.h old mode 100755 new mode 100644 diff --git a/i2caht20/test/BUILD.gn b/i2caht20/test/BUILD.gn old mode 100755 new mode 100644 diff --git a/i2caht20/test/aht20_test.c b/i2caht20/test/aht20_test.c old mode 100755 new mode 100644 diff --git a/icm.c b/icm.c old mode 100755 new mode 100644 diff --git a/icm.h b/icm.h old mode 100755 new mode 100644 diff --git a/io_oled_demo.c b/io_oled_demo.c old mode 100755 new mode 100644 diff --git a/io_oled_demo.h b/io_oled_demo.h old mode 100755 new mode 100644 diff --git a/lis3dh/BUILD.gn b/lis3dh/BUILD.gn old mode 100755 new mode 100644 diff --git a/lis3dh/README.md b/lis3dh/README.md old mode 100755 new mode 100644 diff --git a/lis3dh/lis3dh_driver.c b/lis3dh/lis3dh_driver.c old mode 100755 new mode 100644 diff --git a/lis3dh/lis3dh_driver.h b/lis3dh/lis3dh_driver.h old mode 100755 new mode 100644 diff --git a/lis3dh/lis3dh_test.c b/lis3dh/lis3dh_test.c old mode 100755 new mode 100644 diff --git a/ltr_553als/BUILD.gn b/ltr_553als/BUILD.gn old mode 100755 new mode 100644 diff --git a/ltr_553als/ltr_553als.c b/ltr_553als/ltr_553als.c old mode 100755 new mode 100644 diff --git a/ltr_553als/ltr_553als.h b/ltr_553als/ltr_553als.h old mode 100755 new mode 100644 diff --git a/main.c b/main.c old mode 100755 new mode 100644 diff --git a/nfc_demo/app_demo_config.c b/nfc_demo/app_demo_config.c old mode 100755 new mode 100644 diff --git a/nfc_demo/app_demo_config.h b/nfc_demo/app_demo_config.h old mode 100755 new mode 100644 diff --git a/nfc_demo/app_demo_nfc.c b/nfc_demo/app_demo_nfc.c old mode 100755 new mode 100644 diff --git a/pwm_beer_demo.c b/pwm_beer_demo.c old mode 100755 new mode 100644 diff --git a/ssd1306/BUILD.gn b/ssd1306/BUILD.gn old mode 100755 new mode 100644 diff --git a/ssd1306/ssd1306.c b/ssd1306/ssd1306.c old mode 100755 new mode 100644 diff --git a/ssd1306/ssd1306.h b/ssd1306/ssd1306.h old mode 100755 new mode 100644 diff --git a/ssd1306/ssd1306_conf.h b/ssd1306/ssd1306_conf.h old mode 100755 new mode 100644 diff --git a/ssd1306/ssd1306_fonts.c b/ssd1306/ssd1306_fonts.c old mode 100755 new mode 100644 diff --git a/ssd1306/ssd1306_fonts.h b/ssd1306/ssd1306_fonts.h old mode 100755 new mode 100644 diff --git a/uart1.c b/uart1.c old mode 100755 new mode 100644 diff --git a/wifi_connect_demo.c b/wifi_connect_demo.c old mode 100755 new mode 100644 diff --git a/wifi_hotspot_demo.c b/wifi_hotspot_demo.c old mode 100755 new mode 100644