@@ -152,10 +152,8 @@ class DeviceBootloader {
152152 * @param applicationName Optional name the application that is flashed
153153 * @returns Depthai application package
154154 */
155- static std::vector<uint8_t > createDepthaiApplicationPackage (const Pipeline& pipeline,
156- const dai::Path& pathToCmd = {},
157- bool compress = false ,
158- std::string applicationName = " " , bool checkChecksum = false );
155+ static std::vector<uint8_t > createDepthaiApplicationPackage (
156+ const Pipeline& pipeline, const dai::Path& pathToCmd = {}, bool compress = false , std::string applicationName = " " , bool checkChecksum = false );
159157
160158 /* *
161159 * Creates application package which can be flashed to depthai device.
@@ -164,7 +162,10 @@ class DeviceBootloader {
164162 * @param applicationName Name the application that is flashed
165163 * @returns Depthai application package
166164 */
167- static std::vector<uint8_t > createDepthaiApplicationPackage (const Pipeline& pipeline, bool compress, std::string applicationName = " " , bool checkChecksum = false );
165+ static std::vector<uint8_t > createDepthaiApplicationPackage (const Pipeline& pipeline,
166+ bool compress,
167+ std::string applicationName = " " ,
168+ bool checkChecksum = false );
168169
169170 /* *
170171 * Saves application package to a file which can be flashed to depthai device.
@@ -174,8 +175,12 @@ class DeviceBootloader {
174175 * @param compress Optional boolean which specifies if contents should be compressed
175176 * @param applicationName Optional name the application that is flashed
176177 */
177- static void saveDepthaiApplicationPackage (
178- const dai::Path& path, const Pipeline& pipeline, const dai::Path& pathToCmd = {}, bool compress = false , std::string applicationName = " " , bool checkChecksum = false );
178+ static void saveDepthaiApplicationPackage (const dai::Path& path,
179+ const Pipeline& pipeline,
180+ const dai::Path& pathToCmd = {},
181+ bool compress = false ,
182+ std::string applicationName = " " ,
183+ bool checkChecksum = false );
179184
180185 /* *
181186 * Saves application package to a file which can be flashed to depthai device.
@@ -184,7 +189,8 @@ class DeviceBootloader {
184189 * @param compress Specifies if contents should be compressed
185190 * @param applicationName Optional name the application that is flashed
186191 */
187- static void saveDepthaiApplicationPackage (const dai::Path& path, const Pipeline& pipeline, bool compress, std::string applicationName = " " , bool checkChecksum = false );
192+ static void saveDepthaiApplicationPackage (
193+ const dai::Path& path, const Pipeline& pipeline, bool compress, std::string applicationName = " " , bool checkChecksum = false );
188194
189195 /* *
190196 * @returns Embedded bootloader version
@@ -255,7 +261,8 @@ class DeviceBootloader {
255261 * @param compress Compresses application to reduce needed memory size
256262 * @param applicationName Optional name the application that is flashed
257263 */
258- std::tuple<bool , std::string> flash (const Pipeline& pipeline, bool compress = false , std::string applicationName = " " , Memory memory = Memory::AUTO, bool checkChecksum = false );
264+ std::tuple<bool , std::string> flash (
265+ const Pipeline& pipeline, bool compress = false , std::string applicationName = " " , Memory memory = Memory::AUTO, bool checkChecksum = false );
259266
260267 /* *
261268 * Reads information about flashed application in specified memory from device
0 commit comments