List of commits:
Subject Hash Author Date (UTC)
maintaince 1045165526407dec48797d66751a06dbe94257fb zhanzr 2018-08-04 18:06:59
hellow word, printf from serial port. 6818f08e563aefc70c9bc9ef18852149e080d237 zhanzr 2018-08-04 18:03:27
blink demo. bc35d066c34d62eb527f29af81a9907a960e23bd zhanzr 2018-08-04 17:34:03
Commit 1045165526407dec48797d66751a06dbe94257fb - maintaince
Author: zhanzr
Author date (UTC): 2018-08-04 18:06
Committer name: zhanzr
Committer date (UTC): 2018-08-04 18:06
Parent(s): 6818f08e563aefc70c9bc9ef18852149e080d237
Signing key:
Tree: e43c609fb51610cf0c883703f7e71e62183a38e5
File Lines added Lines deleted
hello_world/Makefile 0 1
hello_world/main/hello_world_main.c 1 1
File hello_world/Makefile changed (mode: 100644) (index 0d1f5e6..5108515)
6 6 PROJECT_NAME := hello-world PROJECT_NAME := hello-world
7 7
8 8 include $(IDF_PATH)/make/project.mk include $(IDF_PATH)/make/project.mk
9
File hello_world/main/hello_world_main.c changed (mode: 100644) (index 61f2c19..e5cc89b)
... ... void app_main()
57 57 (chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external"); (chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external");
58 58
59 59 xTaskCreate(&blink_task, "blink_task_green", xTaskCreate(&blink_task, "blink_task_green",
60 configMINIMAL_STACK_SIZE, (void*)LED_G_GPIO, tskIDLE_PRIORITY+1, NULL);
60 configMINIMAL_STACK_SIZE, (void*)LED_G_GPIO, tskIDLE_PRIORITY+1, NULL);
61 61 // for (int i = 10; i >= 0; i--) { // for (int i = 10; i >= 0; i--) {
62 62 // printf("Restarting in %d seconds...\n", i); // printf("Restarting in %d seconds...\n", i);
63 63 // vTaskDelay(1000 / portTICK_PERIOD_MS); // vTaskDelay(1000 / portTICK_PERIOD_MS);
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/zhanzr/esp32_radio_demo

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/zhanzr/esp32_radio_demo

Clone this repository using git:
git clone git://git.rocketgit.com/user/zhanzr/esp32_radio_demo

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main