[net][at] Add AT serial device receive data length judgment.
This commit is contained in:
parent
c2add5cb4e
commit
f5d9276434
|
@ -576,8 +576,12 @@ static void client_parser(at_client_t client)
|
|||
}
|
||||
|
||||
static rt_err_t at_client_rx_ind(rt_device_t dev, rt_size_t size)
|
||||
{
|
||||
if (size > 0)
|
||||
{
|
||||
rt_sem_release(at_client_local->rx_notice);
|
||||
}
|
||||
|
||||
return RT_EOK;
|
||||
}
|
||||
|
||||
|
|
|
@ -432,8 +432,11 @@ __retry:
|
|||
}
|
||||
|
||||
static rt_err_t at_rx_ind(rt_device_t dev, rt_size_t size)
|
||||
{
|
||||
if (size > 0)
|
||||
{
|
||||
rt_sem_release(at_server_local->rx_notice);
|
||||
}
|
||||
|
||||
return RT_EOK;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue