We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd80861 commit 39c795dCopy full SHA for 39c795d
variants/esp32-gateway/variant.cpp
@@ -1,4 +1,4 @@
1
-/*
+/*
2
* The MIT License (MIT)
3
*
4
* Copyright (c) 2024 Olimex Ltd ([email protected])
@@ -28,9 +28,8 @@
28
29
extern "C" {
30
// Initialize variant/board, called before setup()
31
-void initVariant(void)
32
-{
33
-// Change the drive strength of the digital output num 17 from the default value 20mA to 5mA
34
-gpio_set_drive_capability((gpio_num_t)GPIO_NUM_17, GPIO_DRIVE_CAP_0);
+void initVariant(void) {
+ // Change the drive strength of the digital output num 17 from the default value 20mA to 5mA
+ gpio_set_drive_capability((gpio_num_t)GPIO_NUM_17, GPIO_DRIVE_CAP_0);
35
}
36
0 commit comments