Remove not-needed headers.

pull/1/head
Luigi Cruz 2021-03-11 19:50:48 -03:00
rodzic 87a98162bb
commit 08b994b6db
4 zmienionych plików z 4 dodań i 12 usunięć

3
.gitignore vendored
Wyświetl plik

@ -53,4 +53,5 @@ dkms.conf
build
.cache
pressure.log
pressure.log
.vscode

Wyświetl plik

@ -1,5 +0,0 @@
{
"files.associations": {
"sstream": "c"
}
}

Wyświetl plik

@ -13,11 +13,9 @@ target_link_libraries(tcp_server
tinyusb_host
tinyusb_board
tinyusb_net
hardware_i2c
hardware_adc
hardware_dma
hardware_irq
hardware_pwm
lwip
)

Wyświetl plik

@ -2,18 +2,16 @@
// Modifications were made by Luigi Cruz.
#include <stdio.h>
#include "bsp/board.h"
#include "pico/stdlib.h"
#include "hardware/adc.h"
#include "hardware/dma.h"
#include "hardware/irq.h"
#include "hardware/pwm.h"
#include "hardware/clocks.h"
#include "bsp/board.h"
#include "tusb.h"
#include "dhserver.h"
#include "dnserver.h"
#include "lwip/init.h"
#include "lwip/timeouts.h"
#include "lwip/api.h"