mirror of https://github.com/arendst/Tasmota.git
Tasmota core 2.0.2.x based on release IDF44 (#14611)
* Tasmota core 2.0.2.x based on release IDF44 Co-authored-by: s-hadinger <49731213+s-hadinger@users.noreply.github.com>
This commit is contained in:
parent
9ef5354ade
commit
32ec553cc7
|
@ -113,7 +113,8 @@ bool analogAttach(uint32_t pin) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void analogWrite(uint8_t pin, int val)
|
// void analogWrite(uint8_t pin, int val);
|
||||||
|
extern "C" void __wrap__Z11analogWritehi(uint8_t pin, int val)
|
||||||
{
|
{
|
||||||
uint32_t channel = _analog_pin2chan(pin);
|
uint32_t channel = _analog_pin2chan(pin);
|
||||||
if ( val >> (_pwm_bit_num-1) ) ++val;
|
if ( val >> (_pwm_bit_num-1) ) ++val;
|
||||||
|
|
|
@ -32,19 +32,20 @@ build_flags = ${esp_defaults.build_flags}
|
||||||
-include "esp32x_fixes.h"
|
-include "esp32x_fixes.h"
|
||||||
; wrappers for the crash-recorder
|
; wrappers for the crash-recorder
|
||||||
-Wl,--wrap=panicHandler -Wl,--wrap=xt_unhandled_exception
|
-Wl,--wrap=panicHandler -Wl,--wrap=xt_unhandled_exception
|
||||||
|
-Wl,--wrap=_Z11analogWritehi ; `analogWrite(unsigned char, int)` use the Tasmota version of analogWrite for deeper integration and phase control
|
||||||
extra_scripts = pre:pio-tools/add_c_flags.py
|
extra_scripts = pre:pio-tools/add_c_flags.py
|
||||||
post:pio-tools/post_esp32.py
|
post:pio-tools/post_esp32.py
|
||||||
${esp_defaults.extra_scripts}
|
${esp_defaults.extra_scripts}
|
||||||
|
|
||||||
[core32]
|
[core32]
|
||||||
platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.2.1/platform-tasmota-espressif32-2.0.2.1.zip
|
platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.2.2/platform-tasmota-espressif32-2.0.2.zip
|
||||||
platform_packages =
|
platform_packages =
|
||||||
build_unflags = ${esp32_defaults.build_unflags}
|
build_unflags = ${esp32_defaults.build_unflags}
|
||||||
build_flags = ${esp32_defaults.build_flags}
|
build_flags = ${esp32_defaults.build_flags}
|
||||||
|
|
||||||
|
|
||||||
[core32solo1]
|
[core32solo1]
|
||||||
platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.2.1solo1/platform-tasmota-espressif32-2.0.2.1solo1.zip
|
platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.2.2solo1/platform-tasmota-espressif32-2.0.2solo1.zip
|
||||||
platform_packages =
|
platform_packages =
|
||||||
build_unflags = ${esp32_defaults.build_unflags}
|
build_unflags = ${esp32_defaults.build_unflags}
|
||||||
build_flags = ${esp32_defaults.build_flags}
|
build_flags = ${esp32_defaults.build_flags}
|
||||||
|
|
Loading…
Reference in New Issue