You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
327 B
C++
22 lines
327 B
C++
4 weeks ago
|
/*
|
||
|
* SCIBase.cpp
|
||
|
*
|
||
|
* Author: Aleksey Gerasimenko
|
||
|
* gerasimenko.aleksey.n@gmail.com
|
||
|
*/
|
||
|
|
||
|
#include "DSP28335/SCIBase.h"
|
||
|
|
||
|
namespace DSP28335
|
||
|
{
|
||
|
|
||
|
SCIBase::SCIBase(volatile struct SCI_REGS& SciRegs):
|
||
|
SciRegs(SciRegs),
|
||
|
settings(),
|
||
|
_gpio_setup(0)
|
||
|
//
|
||
|
{}//CONSTRUCTOR
|
||
|
|
||
|
//
|
||
|
} /* namespace DSP28335 */
|