summaryrefslogtreecommitdiff
path: root/source/LCDriver.cpp
diff options
context:
space:
mode:
authorxmarvla <vlatko.markovic@seavus.com>2011-09-28 10:30:52 +0100
committerViktor Mladenovski <viktor.mladenovski@seavus.com>2011-10-28 18:54:06 +0200
commit0ddb310bb30fc3445b9aa2be8cfb615cdadfdb78 (patch)
tree8f28a3ea5936983d70e8a8f6ebfca0bfb0902fb7 /source/LCDriver.cpp
parent90cfff26b762bd140701a2f25f0ad57e7396437c (diff)
Add Change UART Baudrate command in LCDriver
ST-Ericsson ID: 351285 ST-Ericsson FOSS-OUT ID: STETL-FOSS-OUT-10204 Change-Id: I23db5d677a9eef4771bc3a76089faf32fc60424f Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/29952 Reviewed-by: QATOOLS Reviewed-by: Zoran ANCEVSKI <zoran.ancevski@seavus.com> Tested-by: Vlatko STENKOSKI Reviewed-by: QATEST Reviewed-by: Vlatko PISTOLOV <vlatko.pistolov@seavus.com> Tested-by: Vlatko PISTOLOV <vlatko.pistolov@seavus.com>
Diffstat (limited to 'source/LCDriver.cpp')
-rw-r--r--source/LCDriver.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/LCDriver.cpp b/source/LCDriver.cpp
index 9be6fb3..6afb1c1 100644
--- a/source/LCDriver.cpp
+++ b/source/LCDriver.cpp
@@ -205,6 +205,13 @@ LCDRIVER_API int __cdecl System_LoaderStartupStatus(LCDContext Context, char *pc
return Context->m_pObject->Done_System_LoaderStartupStatus(pchVersion, piVersionSize, pchProtocol, piProtocolSize);
}
+LCDRIVER_API int __cdecl System_ChangeBaudrate(LCDContext Context, int iBaudRate)
+{
+ VERIFY_CONTEXT_STARTED(Context);
+
+ return Context->m_pObject->Do_System_ChangeBaudRate(iBaudRate);
+}
+
LCDRIVER_API int __cdecl System_Reboot(LCDContext Context, int iMode)
{
VERIFY_CONTEXT_STARTED(Context);