cc2538_rf: Add NETOPT_ADDRESS{,_LONG} to getters
This commit is contained in:
parent
836fe3dbba
commit
ffe6aed83e
@ -50,6 +50,24 @@ static int _get(netdev_t *netdev, netopt_t opt, void *value, size_t max_len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
|
case NETOPT_ADDRESS:
|
||||||
|
if (max_len < sizeof(uint16_t)) {
|
||||||
|
return -EOVERFLOW;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
*(uint16_t*)value = cc2538_get_addr_short();
|
||||||
|
}
|
||||||
|
return sizeof(uint16_t);
|
||||||
|
|
||||||
|
case NETOPT_ADDRESS_LONG:
|
||||||
|
if (max_len < sizeof(uint64_t)) {
|
||||||
|
return -EOVERFLOW;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
*(uint64_t*)value = cc2538_get_addr_long();
|
||||||
|
}
|
||||||
|
return sizeof(uint64_t);
|
||||||
|
|
||||||
case NETOPT_AUTOACK:
|
case NETOPT_AUTOACK:
|
||||||
if (RFCORE->XREG_FRMCTRL0bits.AUTOACK) {
|
if (RFCORE->XREG_FRMCTRL0bits.AUTOACK) {
|
||||||
*((netopt_enable_t *)value) = NETOPT_ENABLE;
|
*((netopt_enable_t *)value) = NETOPT_ENABLE;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user