Merge pull request #118 from kquinsland/bug/c6-include-path-fix

Make path to `soc/lp_uart_reg.{c,h}` consistent
This commit is contained in:
Jelmer
2023-08-26 21:34:30 +02:00
committed by GitHub
4 changed files with 4 additions and 4 deletions

View File

@@ -21,7 +21,7 @@
#include "sdkconfig.h"
#include "second_uart.h"
#include "soc/uart_struct.h"
#include "soc\lp_uart_reg.h"
#include "soc/lp_uart_reg.h"
#include "utils.h"
#include "led.h"

View File

@@ -17,7 +17,7 @@
#include "proto.h"
#include "sdkconfig.h"
#include "soc/uart_struct.h"
#include "soc\lp_uart_reg.h"
#include "soc/lp_uart_reg.h"
#include "radio.h"
#include "utils.h"
#include "led.h"

View File

@@ -19,7 +19,7 @@
#include "proto.h"
#include "sdkconfig.h"
#include "soc/uart_struct.h"
#include "soc\lp_uart_reg.h"
#include "soc/lp_uart_reg.h"
static const char *TAG = "SECOND_UART";

View File

@@ -17,7 +17,7 @@
#include "proto.h"
#include "sdkconfig.h"
#include "soc/uart_struct.h"
#include "soc\lp_uart_reg.h"
#include "soc/lp_uart_reg.h"
#include "nvs_flash.h"
void delay(int ms) { vTaskDelay(pdMS_TO_TICKS(ms)); }