mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-05 15:00:33 +00:00
Merge branch 'next' of https://github.com/gnss-sdr/gnss-sdr into e6-pvt
This commit is contained in:
commit
92e3d043d2
@ -68,7 +68,7 @@ int Fpga_DMA::DMA_open()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
std::array<int8_t, BUFFER_SIZE> *Fpga_DMA::get_buffer_address() const
|
std::array<int8_t, BUFFER_SIZE> *Fpga_DMA::get_buffer_address() // NOLINT(readability-make-member-function-const)
|
||||||
{
|
{
|
||||||
#if INTPTR_MAX == INT64_MAX // 64-bit processor architecture
|
#if INTPTR_MAX == INT64_MAX // 64-bit processor architecture
|
||||||
return &tx_channel.buf_ptr[0].buffer;
|
return &tx_channel.buf_ptr[0].buffer;
|
||||||
|
@ -78,7 +78,7 @@ public:
|
|||||||
/*!
|
/*!
|
||||||
* \brief Obtain DMA buffer address.
|
* \brief Obtain DMA buffer address.
|
||||||
*/
|
*/
|
||||||
std::array<int8_t, BUFFER_SIZE> *get_buffer_address(void) const;
|
std::array<int8_t, BUFFER_SIZE> *get_buffer_address(void); // NOLINT(readability-make-member-function-const)
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Transfer DMA data
|
* \brief Transfer DMA data
|
||||||
|
Loading…
Reference in New Issue
Block a user