git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15802 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
b0b68413ae
commit
782aaee906
|
@ -113,10 +113,6 @@ typedef enum {
|
||||||
* architecture dependent, fields.
|
* architecture dependent, fields.
|
||||||
*/
|
*/
|
||||||
struct hal_mac_config {
|
struct hal_mac_config {
|
||||||
/**
|
|
||||||
* @brief MAC address.
|
|
||||||
*/
|
|
||||||
uint8_t *mac_address;
|
|
||||||
mac_lld_config_fields;
|
mac_lld_config_fields;
|
||||||
#if defined(MAC_CONFIG_EXT_FIELDS)
|
#if defined(MAC_CONFIG_EXT_FIELDS)
|
||||||
MAC_CONFIG_EXT_FIELDS
|
MAC_CONFIG_EXT_FIELDS
|
||||||
|
|
|
@ -234,7 +234,9 @@ typedef struct {
|
||||||
/**
|
/**
|
||||||
* @brief Low level fields of the MAC configuration structure.
|
* @brief Low level fields of the MAC configuration structure.
|
||||||
*/
|
*/
|
||||||
#define mac_lld_config_fields
|
#define mac_lld_config_fields \
|
||||||
|
/* MAC address.*/ \
|
||||||
|
uint8_t *mac_address
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Low level fields of the MAC transmit descriptor structure.
|
* @brief Low level fields of the MAC transmit descriptor structure.
|
||||||
|
|
|
@ -250,7 +250,9 @@ typedef struct {
|
||||||
/**
|
/**
|
||||||
* @brief Low level fields of the MAC configuration structure.
|
* @brief Low level fields of the MAC configuration structure.
|
||||||
*/
|
*/
|
||||||
#define mac_lld_config_fields
|
#define mac_lld_config_fields \
|
||||||
|
/* MAC address.*/ \
|
||||||
|
uint8_t *mac_address
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Low level fields of the MAC transmit descriptor structure.
|
* @brief Low level fields of the MAC transmit descriptor structure.
|
||||||
|
|
Loading…
Reference in New Issue