Add W6300 ethernet initialization

This commit is contained in:
Ian Gulliver
2026-04-03 21:47:48 +09:00
parent d6541a76ed
commit 577fc6d774
15 changed files with 11066 additions and 2 deletions

23
lib/w6300/port_common.h Normal file
View File

@@ -0,0 +1,23 @@
/**
Copyright (c) 2021 WIZnet Co.,Ltd
SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef _PORT_COMMON_H_
#define _PORT_COMMON_H_
/**
----------------------------------------------------------------------------------------------------
Includes
----------------------------------------------------------------------------------------------------
*/
/* Common */
#include "pico/stdlib.h"
#include "pico/binary_info.h"
#include "pico/critical_section.h"
#include "hardware/spi.h"
#include "hardware/dma.h"
#include "hardware/clocks.h"
#endif /* _PORT_COMMON_H_ */