Skip to content

Commit 3164970

Browse files
committed
* Change rmtpwm to 24khz
* change sntp task to idle+1 * fix wifi counter condition
1 parent 2fc89cc commit 3164970

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

fw/components/borneo-core/src/sntp.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ int bo_sntp_init()
259259
ESP_LOGI(TAG, "Current time zone: %s", tz);
260260
}
261261

262-
xTaskCreate(bo_sntp_task, "sntp_task", 2 * 1024, NULL, tskIDLE_PRIORITY + 2, NULL);
262+
xTaskCreate(bo_sntp_task, "sntp_task", 2 * 1024, NULL, tskIDLE_PRIORITY + 1, NULL);
263263

264264
BO_TRY(esp_event_handler_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &ip_event_handler, NULL));
265265

fw/components/borneo-core/src/wifi/sc.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@ static void sc_event_handler(void* arg, esp_event_base_t event_base, int32_t eve
8888
if (evt->type == SC_TYPE_ESPTOUCH_V2) {
8989
uint8_t rvd_data[RVD_MAX_LEN] = { 0 };
9090
BO_MUST(esp_smartconfig_get_rvd_data(rvd_data, sizeof(rvd_data)));
91-
ESP_LOGI(TAG, "Got `RVD_DATA`");
9291
/*
92+
ESP_LOGI(TAG, "Got `RVD_DATA`");
9393
for (int i = 0; i < 33; i++) {
9494
printf("%02x ", rvd_data[i]);
9595
}
9696
printf("\n");
9797
*/
9898
}
9999

100-
esp_wifi_disconnect();
101-
esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config);
100+
BO_MUST(esp_wifi_disconnect());
101+
BO_MUST(esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config));
102102
_sc_state = SC_STATE_CONNECTING;
103-
esp_wifi_connect();
103+
BO_MUST(esp_wifi_connect());
104104
} break;
105105

106106
default: {

fw/components/borneo-core/src/wifi/wifi.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#endif
2424

2525
#define SSID_MAX_LEN 32
26-
#define SHORT_SHUTDOWN_PERIOD 100
26+
#define SHORT_SHUTDOWN_PERIOD 30
2727
#define NVS_NS "borneo.wifi"
2828
#define NVS_COUNT_KEY "shutdown-count"
2929
#define TAG "wifi"
@@ -63,7 +63,7 @@ int bo_wifi_start()
6363
BO_TRY(esp_wifi_start());
6464

6565
// Try to connect the AP
66-
if (_has_ssid()) {
66+
if (!_has_ssid()) {
6767
ESP_LOGI(TAG, "There is no saved WiFi configuration.");
6868

6969
#if CONFIG_BT_BLE_BLUFI_ENABLE
@@ -181,7 +181,10 @@ static void wifi_event_handler(void* arg, esp_event_base_t event_base, int32_t e
181181
} // switch
182182
}
183183

184-
void _timer_callback(void* args) { _update_nvs_reset(); }
184+
void _timer_callback(void* args)
185+
{
186+
_update_nvs_reset();
187+
}
185188

186189
int _update_nvs_early(int32_t* shutdown_count)
187190
{

fw/lyfi/main/src/rmtpwm.c

+6-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
static const char* TAG = "rmtpwm";
1515

16-
#define RMTPWM_FREQ_HZ 10000 // 10 kHz PWM
16+
#define RMTPWM_FREQ_HZ 24000 // 24 kHz PWM
1717
#define RMT_PWM_RESOLUTION_HZ 1000000 // 1MHz resolution
1818

1919
typedef struct {
@@ -105,7 +105,8 @@ int rmtpwm_init()
105105
return 0;
106106
}
107107

108-
int rmtpwm_set_pwm_duty(uint8_t duty) {
108+
int rmtpwm_set_pwm_duty(uint8_t duty)
109+
{
109110
//
110111
return rmtpwm_set_duty_internal(&s_pwm_channel, duty);
111112
}
@@ -120,7 +121,7 @@ int rmtpwm_set_dac_duty(uint8_t duty)
120121

121122
int rmtpwm_set_duty_internal(struct rmtpwm_channel* channel, uint8_t duty)
122123
{
123-
if(duty > 100) {
124+
if (duty > 100) {
124125
return -EINVAL;
125126
}
126127

@@ -131,7 +132,8 @@ int rmtpwm_set_duty_internal(struct rmtpwm_channel* channel, uint8_t duty)
131132
};
132133
ESP_ERROR_CHECK(rmt_disable(channel->rmt_channel));
133134
ESP_ERROR_CHECK(rmt_enable(channel->rmt_channel));
134-
ESP_ERROR_CHECK(rmt_transmit(channel->rmt_channel, s_pwm_encoder, &channel->duty, sizeof(channel->duty), &tx_config));
135+
ESP_ERROR_CHECK(
136+
rmt_transmit(channel->rmt_channel, s_pwm_encoder, &channel->duty, sizeof(channel->duty), &tx_config));
135137
xSemaphoreGive(channel->mutex);
136138
}
137139
else {

0 commit comments

Comments
 (0)