summaryrefslogtreecommitdiff
path: root/main.cpp
blob: 53fb08bca39b314714add37db056599cce3e726e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
#include <chrono>
#include <errno.h>
#include <fstream>
#include <iostream>
#include <iterator>
#include <string.h>
#include <sys/mman.h>
#include <thread>

#include "LibCamera.h"
#include "calibration.h"
#include "camera/innomakerov9281.h"
#include "camera/ov9281.h"
#include "dumps.h"
#include "fuck_intel.h"
#include "genetic_algos.h"
#include "httpservice.h"
#include "imagealgos.h"
#include "laser.h"
#include "macro.h"
#include "pigpio.h"
#include "printerclient.h"
#include "profile.h"
#include "rotaryencoder.h"

#include <QCoreApplication>
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QHttpServer>
#include <QImage>
#include <QJsonArray>
#include <QJsonDocument>
#include <QJsonObject>
#include <QSerialPort>
#include <QTextStream>
#include <QTimer>
#include <QtConcurrent/QtConcurrent>

#define try_apply_config() \
    if (!applyConfig(config)) \
    { \
        camera->release(); \
        cm->stop(); \
\
        return EXIT_FAILURE; \
    }

ScanningModeFlags scanningModeFlags{ScanningModeFlags::None};

QElapsedTimer calibrationTimer;

extern volatile int32_t positionSteps;

requested_params_t requested_params;

namespace {
std::shared_ptr<Image> img;
Pixels pixels;
std::vector<Pixels> calibrationPixels;
QMutex calibrationPixelsMutex;
} // namespace

using namespace std::chrono_literals;

// static std::shared_ptr<libcamera::Camera> camera;
// std::unique_ptr<libcamera::CameraConfiguration> config;
// static std::map<int, std::pair<void*, unsigned int>> mappedBuffers_;
// std::vector<std::unique_ptr<libcamera::Request>> requests;
libcamera::ControlList lastControls;

namespace {
CalibrationTablePtr calibrationTableZ;
CalibrationTablePtr calibrationTableX;
} // namespace

// static bool applyConfig(
//     const std::unique_ptr<libcamera::CameraConfiguration>& config
// );
// static void onRequestCompleted(libcamera::Request* completed_request);
// static void printControls();
// static QList<Pixels> filter(const QList<Pixels>& rawProfiles);

auto printPixels = [](const auto& pixels) {
    for (size_t i = (img_width - 10) / 2;
         i < img_width - ((img_width - 10) / 2);
         ++i)
    {
        std::cout << pixels[i] << " ";
    }
    std::cout << std::endl;
};

void onNewImage(std::shared_ptr<Image> image)
{
    // std::cout << __func__ << std::endl << std::flush;

    if (!image)
    {
        qDebug() << __func__ << "no image";
        return;
    }

    ::img = image;
}

void onNewPixels(std::shared_ptr<Pixels> pixels)
{
    // std::cout << __func__ << std::endl << std::flush;

    if (!pixels)
    {
        qDebug() << __func__ << "got null pixels";
    }

    if (!*pixels)
    {
        // qDebug() << __func__ << "got empty pixels";
    }

    for (size_t i = 640 - 5; i < 640 + 5; i++)
    {
        // std::cout << pixels->pixels[i] << " ";
    }

    // std::cout << std::endl

    ::pixels = *pixels;
}

bool initLaser();

int main(int argc, char* argv[])
{
    QCoreApplication app(argc, argv);

    QList<QFuture<void>> initializers;

#ifdef INNO_MAKER
    if (false)
    {
        std::cout << std::boolalpha;
        InnoMakerOV9281 innoMakerCam;
        qDebug() << "init:" << innoMakerCam.init();
        qDebug() << "set exposure:" << innoMakerCam.setExposureTimeUs(3000);
        qDebug() << "set gain:" << innoMakerCam.setGain(3000);

        innoMakerCam.startStream();
        QThread::sleep(3);
        qDebug() << "should be stopped";
        // Image buf;

        // for (size_t i = 0; i < 1000; ++i) {
        //     if (!innoMakerCam.getImage(buf)) {
        //         break;
        //     }

        //     buf.rotate();
        //     auto pixels = buf.pixels();
        // }
    }
    // qDebug() << "ok";
    // exit(EXIT_SUCCESS);
#endif

    // if (false)
    qDebug() << "size of raw profile" << sizeof(Pixels);
    if (true)
    {
        // open binary calibration table
        if (true)
        {
            initializers << QtConcurrent::run([&]() {
                if (!openCalibrationTable(
                        "/home/user/dumps/binz.calibration_table",
                        ::calibrationTableZ))
                {
                    exit(EXIT_FAILURE);
                }
            });

            initializers << QtConcurrent::run([&]() {
                if (!openCalibrationTable(
                        "/home/user/dumps/binx.calibration_table",
                        ::calibrationTableX))
                {
                    exit(EXIT_FAILURE);
                }
            });
        }

        if (false)
        {
            // z
            // if (!openCalibrationTable(
            //         "/home/user/dumps/binz.calibration_table",
            //         ::calibrationTableZ
            //     ))
            // {
            //     exit(EXIT_FAILURE);
            // }

            // if (!calibrationTableToImage(::calibrationTableZ)
            //          .save("/home/user/dumps/imageZ.png"))
            // {
            //     qDebug() << "cannot save imageZ.png";
            //     exit(EXIT_FAILURE);
            // }

            // interpolate(::calibrationTableZ);
            // exit(EXIT_SUCCESS);

            // calibrationTableToImage(::calibrationTableZ)
            //     .save("/home/user/dumps/imageZ_interpolated.png");

            auto rawProfiles = openDump("/home/user/dumps/binx");
            qDebug() << "raw x-profiles count is" << rawProfiles.size();
            // qDebug() << "height" << calibrationColumnHeight;

            auto filteredRawProfiles = filter(std::move(rawProfiles));
            qDebug() << "filtered x-profiles count is"
                     << filteredRawProfiles.count();

            ::calibrationTableX = calibrateX(std::move(filteredRawProfiles));

            // for (size_t i = 9471; i < 9472; i++) {
            //     std::cout << "row #" << i << ": ";

            //     for (size_t j = 0; j < 1280; ++j) {
            //         const auto& p = ::calibrationTableX->at(j).at(i);
            //         std::cout << p << ' ';
            //     }

            //     std::cout << std::endl;
            // }

            // x
            // qDebug() << "open x table";
            // if (!openCalibrationTable("/home/user/dumps/binx.calibration_table",
            //                           ::calibrationTableX)) {
            //     exit(EXIT_FAILURE);
            // }

            // if (!calibrationTableToImage(::calibrationTableX)
            //          .save("/home/user/dumps/imageX.png")) {
            //     qDebug() << "cannot save imageX.png";
            //     exit(EXIT_FAILURE);
            // }

            // for (size_t i = 9471; i < 9472; i++) {
            //     std::cout << "row #" << i << ": ";

            //     for (size_t j = 0; j < 1280; ++j) {
            //         const auto& p = ::calibrationTableX->at(j).at(i);
            //         std::cout << p << ' ';
            //     }

            //     std::cout << std::endl;
            // }

            // exit(EXIT_SUCCESS);
            interpolate(::calibrationTableX);

            // calibrationTableToImage(::calibrationTableX)
            //     .save("/home/user/dumps/imageX_interpolated.png");
        }

        // load binary calibration dumps and calibrate
        if (false)
        {
            if (true)
            {
                auto rawProfiles = openDump("/home/user/dumps/binz");
                // auto rawProfiles = openDump("/home/user/dumps/z");
                qDebug() << "raw z-profiles count is" << rawProfiles.size();
                // qDebug() << "height" << calibrationColumnHeight;

                auto filteredRawProfiles = filter(std::move(rawProfiles));
                qDebug() << "filtered z-profiles count is"
                         << filteredRawProfiles.count();

                ::calibrationTableZ = calibrateZ(std::move(filteredRawProfiles),
                                                 requested_params.stepsPerMm);

                // bool ok = calibrationTableToImage(::calibrationTableZ)
                //               .save("/home/user/dumps/z/imageZ.png");

                // if (!ok)
                // {
                //     qDebug() << "cannot save imageZ.png";
                //     exit(EXIT_FAILURE);
                // }

                interpolate(::calibrationTableZ);

                if (!dump(::calibrationTableZ,
                          "/home/user/dumps/binz.calibration_table"))
                {
                    qApp->exit(EXIT_FAILURE);
                }
                // calibrationTableToImage(::calibrationTableZ)
                //     .save("/home/user/dumps/z/imageZ_interpolated.png");
                // exit(EXIT_SUCCESS);
            }

            qDebug()
                << "--------------------------------------------------------";

            if (true)
            {
                auto rawProfiles = openDump("/home/user/dumps/binx");
                qDebug() << "raw x-profiles count is" << rawProfiles.size();
                // qDebug() << "height" << calibrationColumnHeight;

                auto filteredRawProfiles = filter(std::move(rawProfiles));
                qDebug() << "filtered x-profiles count is"
                         << filteredRawProfiles.count();

                ::calibrationTableX = calibrateX(std::move(filteredRawProfiles));

                // bool ok = calibrationTableToImage(::calibrationTableX)
                //               .save("/home/user/dumps/z/imageX.png");

                // if (!ok)
                // {
                //     qDebug() << "cannot save imageX.png";
                //     exit(EXIT_FAILURE);
                // }

                interpolate(::calibrationTableX);

                if (!dump(::calibrationTableX,
                          "/home/user/dumps/binx.calibration_table"))
                {
                    qApp->exit(EXIT_FAILURE);
                }

                // calibrationTableToImage(::calibrationTableX)
                //     .save("/home/user/dumps/z/imageX_interpolated.png");
            }
        }
    }

    // exit(EXIT_SUCCESS);

    // if (!initLaser()) {
    //     return EXIT_FAILURE;
    // }

    // PrinterClient printerClient;

    QElapsedTimer t;
    t.start();

    qDebug() << "msecs before encoder:" << t.elapsed();

    RotaryEncoder encoder;

    qDebug() << "msecs before camera:" << t.elapsed();
    // FIXME: don't use one var for everything
    int ret;
#ifndef INNO_MAKER
    std::unique_ptr<libcamera::CameraManager> cm =
        std::make_unique<libcamera::CameraManager>();
    cm->start();
#endif
    // const auto cameras = cm->cameras();
    // const auto cameras = OV9281::search(cm);
    const auto cameras = InnoMakerOV9281::search();
    // const auto cameras =

    if (cameras.empty())
    {
        std::cerr << "No cameras were identified on the system." << std::endl;
#ifndef INNO_MAKER
        cm->stop();
#endif

        return EXIT_FAILURE;
    }

    auto camera = cameras.at(0);

#ifndef INNO_MAKER
    camera->printControls();
#endif

    std::cout << "connect everything" << std::endl;
    camera->newPixels.connect(&onNewPixels);
    camera->newImage.connect(&onNewImage);
    camera->newImageCallback = &onNewImage;
    camera->newPixelsCallback = &onNewPixels;

    for (auto& i : initializers)
        i.waitForFinished();

    if (!camera->startStream())
    {
#ifndef INNO_MAKER
        cm->stop();
#endif

        return EXIT_FAILURE;
    }

    QHttpServer qHttpServer;
    qHttpServer.route("/v1/sensor/image", [&]() {
        // std::cout << "http: image" << std::endl << std::flush;
        // FILE *f = fopen("/tmp/img.pgm", "w");
        // static bool save = false;
        pgm_save(::img);
        // save = false;
        std::lock_guard<std::mutex> lg(pgm_image_mtx);
        // qDebug() << "mutex locked";
        // qDebug() << "image saved to array";
        return QByteArray((const char*) pgm_image, pgm_image_size);
    });
    qHttpServer.route("/v1/sensor/image2", [&]() {
        // std::cout << "http: image2" << std::endl;
        pgm_save(::img);

        std::lock_guard<std::mutex> lg(pgm_image_mtx);
        // qDebug() << "image2";
        return QByteArray((const char*) pgm_image, pgm_image_size);
    });
    // qHttpServer.route("/v1/sensor/exposureTimeUs", [&]() {
    //     // std::lock_guard<std::mutex> lg(pgm_image_mtx);
    //     return "123";
    // });
    qHttpServer.route("/v1/pixels", [&]() {
        // std::cout << "http: pixels" << std::endl;
        std::lock_guard<std::mutex> lg(pgm_image_mtx);

        QJsonArray pixels;

        for (size_t i = 0; i < img_width; ++i)
        {
            // pixels << img_height - img.pixels[i];
            pixels << ::pixels.pixels[i];
        }

        QJsonObject json;
        json["pixels"] = pixels;
        json["encoderPosition"] = qint64{encoder.position()};
        // FIXME: get prom pixels struct
        json["measurementCounter"] = qint64{img->counters.measurementCounter};
        json["timestampUs"] = qint64(img->counters.timestampUs);

        const auto lines = pixelsToLines(::pixels);

        // qDebug() << "lines count is " << lines.count();

        QJsonArray jsonLines;

        for (const auto& l : lines)
        {
            jsonLines << QJsonArray{QJsonArray{l.p1().x(), l.p1().y()},
                                    QJsonArray{l.p2().x(), l.p2().y()}};
        }

        json["lines"] = jsonLines;

        return QHttpServerResponse(QJsonDocument(json).toJson());
    });

    qHttpServer.route("/v1/profile", [&]() -> QHttpServerResponse {
        // std::cout << "http: profile" << std::endl;
        std::lock_guard<std::mutex> lg(pgm_image_mtx);

        if (!::calibrationTableZ || !::calibrationTableX)
            return QHttpServerResponse::StatusCode::ServiceUnavailable;

        const Profile profile(::pixels,
                              ::calibrationTableZ,
                              ::calibrationTableX);

        const QJsonObject json{{"profile", QJsonObject(profile)}};

        return QHttpServerResponse(QJsonDocument(json).toJson());
    });

    qHttpServer
        .route("/v1/commands/resetEncoder",
               [&](const QHttpServerRequest& request) -> QHttpServerResponse {
                   std::cout << "http: resetEncoder" << std::endl;
                   if (request.method() != QHttpServerRequest::Method::Post)
                   {
                       return QHttpServerResponse::StatusCode::NotFound;
                   }

                   qDebug() << "reset encoder";

                   positionSteps = 0;

                   return QHttpServerResponse::StatusCode::Ok;
               });

    qHttpServer
        .route("/v1/commands/startCalibration",
               [&](const QHttpServerRequest& request) -> QHttpServerResponse {
                   std::cout << "http: startCalibration" << std::endl;
                   if (request.method() != QHttpServerRequest::Method::Post)
                   {
                       return QHttpServerResponse::StatusCode::NotFound;
                   }

                   qDebug() << "start calibration";

                   // TODO: use flags
                   scanningModeFlags = ScanningModeFlags::Calibration;
                   calibrationTimer.start();

                   return QHttpServerResponse::StatusCode::Ok;
               });

    qHttpServer
        .route("/v1/commands/gCode",
               [&](const QHttpServerRequest& request) -> QHttpServerResponse {
                   std::cout << "http: gCode" << std::endl;
                   if (request.method() != QHttpServerRequest::Method::Post)
                   {
                       return QHttpServerResponse::StatusCode::NotFound;
                   }

                   const auto command = request.body();

                   qDebug() << "send gCode:" << command;

                   // printerClient.sendCommand(command);

                   return QHttpServerResponse::StatusCode::Ok;
               });

    // qHttpServer
    //     .route("/v1/commands/startCalibration",
    //            [&](const QHttpServerRequest& request) -> QHttpServerResponse {
    //                std::cout << "http: startCalibration" << std::endl;
    //                if (request.method() != QHttpServerRequest::Method::Post)
    //                {
    //                    return QHttpServerResponse::StatusCode::NotFound;
    //                }

    //                const auto command = request.body();

    //                qDebug() << "send gCode:" << command;

    //                // printerClient.sendCommand(command);

    //                return QHttpServerResponse::StatusCode::Ok;
    //            });

    qHttpServer.route(
        "/v1/sensor/params",
        [&](const QHttpServerRequest& request) -> QHttpServerResponse {
            std::cout << "http: params" << std::endl;
            switch (request.method())
            {
            case QHttpServerRequest::Method::Get: {
                std::lock_guard<std::mutex> lg(pgm_image_mtx);
                QJsonObject json;

                // const libcamera::ControlIdMap& ctrlIdMap =
                //     camera->controls().idmap();

                // qDebug() << "readParams:" << lastControls.size();
                // qDebug() << request.method();

                // for (const auto& [id, value] : lastControls)
                // {
                //     const libcamera::ControlId* controlId = ctrlIdMap.at(id);
                //     auto name = QString::fromStdString(controlId->name());
                //     const auto valueStr =
                //         QString::fromStdString(value.toString());
                //     qDebug()
                //         << "\t param:" << controlId->id() << name << valueStr;

                //     name[0] = name[0].toLower();
                //     json[name] = valueStr;
                // }

                // json[laserLevelKey] = requested_params.laserLevel;

                // qDebug() << "response body:" << json;

                // QHttpServerResponse
                return QHttpServerResponse(QJsonDocument(json).toJson());
            }

            case QHttpServerRequest::Method::Post: {
                qDebug() << "request body:" << request.body();

                auto json = QJsonDocument::fromJson(request.body()).object();

                if (json.contains(exposureTimeKey))
                {
                    const int32_t value{json[exposureTimeKey].toInt()};

                    if (value == 0)
                        return QHttpServerResponse::StatusCode::
                            RequestRangeNotSatisfiable;

                    qDebug() << "set new exposure time:" << value;

                    // requested_params.exposureTime = value;
                    if (!camera->setExposureTimeUs(value))
                        return QHttpServerResponse::StatusCode::
                            RequestRangeNotSatisfiable;
                }

                if (json.contains(laserLevelKey))
                {
                    const int32_t value{json[laserLevelKey].toInt()};

                    if (value == 0)
                    {
                        return QHttpServerResponse::StatusCode::NotFound;
                    }

                    qDebug() << "set new laserLevel:" << value;
                    requested_params.laserLevel = value;

                    const QString laserLevelFile{
                        "/sys/class/pwm/pwmchip2/pwm1/duty_cycle"};
                    QFile f{laserLevelFile};

                    if (!f.open(QFile::ReadWrite))
                    {
                        qDebug() << "cannot open laser level file:"
                                 << f.errorString();
                        qDebug() << "file path is" << f.fileName();
                        return QHttpServerResponse::StatusCode::InternalServerError;
                    }

                    QTextStream s{&f};

                    s << value;

                    s >> requested_params.laserLevel;

                    qDebug() << "done with laser level";
                }

                return QHttpServerResponse(request.body());
            }
            default: {
                return QHttpServerResponse(
                    QByteArray("unsupported http method"));
            }
            }
        });

    qDebug() << "listen: " << qHttpServer.listen(QHostAddress::Any, 8081);

    QFuture<void> future = QtConcurrent::run([]() {
        Port port(8080);
        Address addr(Ipv4::any(), port);

        HttpService httpService(addr);

        size_t threads_count = 1;
        httpService.init(threads_count);
        httpService.start();
    });

    ////////////////////////////////////////////////////////////////////////////
    std::clog << std::flush;
    std::cerr << std::flush;
    std::cout << "ok for now" << std::endl << std::flush;

    // camera->stop();
    // camera->release();
    // cm->stop();

    auto result = app.exec();

    future.cancel();
    future.waitForFinished();

    // for (auto& [fd, mem] : mappedBuffers_)
    // {
    //     munmap(mem.first, mem.second);
    // }

    // FIXME: crash somewhere here. proper libcamera finishing needed
    // requests.clear();
    // mappedBuffers_.clear();

    // camera->stop();
    // config.reset();
    // allocator->free(stream);
    // allocator.reset();
    // camera->release();
    // camera.reset();
#ifndef INNO_MAKER
    cm->stop();
#endif

    return result;
}

bool initLaser()
{
    const QLatin1String pwmChip{"pwmchip2"};
    const uint16_t pwmChannel{1};
    const QLatin1String pwmSystemRoot{"/sys/class/pwm"};
    const QString pwmChipRoot{pwmSystemRoot + "/" + pwmChip};

    const QString pwmExportFile{pwmChipRoot + "/export"};

    QFile f{pwmExportFile};

    if (!f.open(QFile::WriteOnly))
    {
        qWarning() << "cannot open" << f.fileName() << "for writing";
        qWarning() << "error:" << f.errorString();

        return false;
    }

    QTextStream s{&f};
    s << pwmChannel;

    const QString pwm{QLatin1String("pwm%1").arg(QString::number(pwmChannel))};
    const QString pwmRoot{pwmChipRoot + "/" + pwm};

    const QString periodFilename{pwmRoot + "/period"};
    f.close();
    f.setFileName(periodFilename);

    if (!f.open(QFile::WriteOnly))
    {
        qWarning() << "cannot open" << f.fileName() << "for writing";
        qWarning() << "error:" << f.errorString();

        return false;
    }

    const unsigned periodHz{50'000};

    s << periodHz;

    const QString dutyCycleFilename{pwmRoot + "/duty_cycle"};
    f.close();
    f.setFileName(dutyCycleFilename);

    if (!f.open(QFile::WriteOnly))
    {
        qWarning() << "cannot open" << f.fileName() << "for writing";
        qWarning() << "error:" << f.errorString();

        return false;
    }

    const unsigned dutyCycle{3'000};

    s << dutyCycle;

    const QString enableFilename{pwmRoot + "/enable"};
    f.close();
    f.setFileName(enableFilename);

    if (!f.open(QFile::WriteOnly))
    {
        qWarning() << "cannot open" << f.fileName() << "for writing";
        qWarning() << "error:" << f.errorString();

        return false;
    }

    const int enable{1};

    s << enable;

    return true;
}