generated from RaccoonlabDev/mini_v2_node
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa4f690
commit 43e333a
Showing
5 changed files
with
48 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,26 @@ | ||
// Copyright (C) 2023 Dmitry Ponomarev <[email protected]> | ||
// Distributed under the terms of the GPL v3 license, available in the file LICENSE. | ||
|
||
#include "pmu.hpp" | ||
#include "buzzer.hpp" | ||
#include "dronecan.h" | ||
#include "main.h" | ||
#include "params.hpp" | ||
#include "string_params.hpp" | ||
#include "storage.h" | ||
#include "periphery/pwm/pwm.hpp" | ||
|
||
Buzzer::Buzzer() { | ||
|
||
} | ||
|
||
int8_t Buzzer::init() { | ||
return 0; | ||
} | ||
|
||
void set_params(uint32_t frequency, uint32_t duration) { | ||
|
||
} | ||
|
||
void process() { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters