Interrupt handlers C -> C++
This commit is contained in:
parent
9dba241466
commit
4de62c7f74
10 changed files with 105 additions and 75 deletions
18
lib/ll_memcpydma.cpp
Normal file
18
lib/ll_memcpydma.cpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* llmemcpydma.cpp
|
||||
*
|
||||
* Created on: Nov 4, 2019
|
||||
* Author: abody
|
||||
*/
|
||||
|
||||
#include <ll_memcpydma.h>
|
||||
|
||||
namespace f4ll {
|
||||
|
||||
LL_MemcpyDma::LL_MemcpyDma(DMA_TypeDef *dma, uint32_t stream)
|
||||
: LL_DmaHelper(dma, stream)
|
||||
{
|
||||
LL_DMA_EnableIT_TC(dma, stream);
|
||||
}
|
||||
|
||||
} /* namespace f4ll */
|
Loading…
Add table
Add a link
Reference in a new issue