1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

Fix error in matlab template path.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2554 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
cwabbott 2011-01-23 20:06:56 +00:00 committed by cwabbott
parent 6b38f84afe
commit 38458856d2

View File

@ -33,7 +33,7 @@ bool UAVObjectGeneratorMatlab::generate(UAVObjectParser* parser,QString template
fieldTypeStrMatlab << "int8" << "int16" << "int32" fieldTypeStrMatlab << "int8" << "int16" << "int32"
<< "uint8" << "uint16" << "uint32" << "float32" << "uint8"; << "uint8" << "uint16" << "uint32" << "float32" << "uint8";
QDir matlabTemplatePath = QDir( templatepath + QString("ground/openpilot/src/plugins/uavobjects")); QDir matlabTemplatePath = QDir( templatepath + QString("ground/openpilotgcs/src/plugins/uavobjects"));
QDir matlabOutputPath = QDir( outputpath + QString("matlab") ); QDir matlabOutputPath = QDir( outputpath + QString("matlab") );
matlabOutputPath.mkpath(matlabOutputPath.absolutePath()); matlabOutputPath.mkpath(matlabOutputPath.absolutePath());