Make path to soc/lp_uart_reg.{c,h} consistent

Using _just_ the `/` character makes the paths "universal".

On *nix, `/` is the path separator and windows has support for `/` internally.
This commit is contained in:
karl
2023-08-26 12:32:24 -07:00
parent de38662a2a
commit 3a1c34f3a6
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)); }