Skip to content

Commit 1d614fd

Browse files
committed
PPA unfix
1 parent 0e355d9 commit 1d614fd

File tree

8 files changed

+12
-16
lines changed

8 files changed

+12
-16
lines changed

esp32p4/bin/bootloader_qio_80m.elf

0 Bytes
Binary file not shown.

esp32p4/include/esp_eth/include/esp_eth_mac_esp.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,14 @@ typedef enum {
253253
.clock_gpio = (emac_rmii_clock_gpio_t) 50 \
254254
} \
255255
}, \
256+
.clock_config_out_in = \
257+
{ \
258+
.rmii = \
259+
{ \
260+
.clock_mode = EMAC_CLK_EXT_IN, \
261+
.clock_gpio = (emac_rmii_clock_gpio_t) -1 \
262+
} \
263+
}, \
256264
.dma_burst_len = ETH_DMA_BURST_LEN_32, \
257265
.intr_priority = 0, \
258266
.emac_dataif_gpio = \
@@ -267,14 +275,6 @@ typedef enum {
267275
.rxd1_num = 30 \
268276
} \
269277
}, \
270-
.clock_config_out_in = \
271-
{ \
272-
.rmii = \
273-
{ \
274-
.clock_mode = EMAC_CLK_EXT_IN, \
275-
.clock_gpio = (emac_rmii_clock_gpio_t) -1 \
276-
} \
277-
}, \
278278
}
279279
#endif // CONFIG_IDF_TARGET_ESP32P4
280280

esp32p4/include/hal/esp32p4/include/hal/i2c_ll.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ static inline void i2c_ll_set_source_clk(i2c_dev_t *hw, i2c_clock_source_t src_c
796796

797797
/// use a macro to wrap the function, force the caller to use it in a critical section
798798
/// the critical section needs to declare the __DECLARE_RCC_ATOMIC_ENV variable in advance
799-
#define i2c_ll_set_source_clk(...) do {i2c_ll_set_source_clk(__VA_ARGS__);} while(0)
799+
#define i2c_ll_set_source_clk(...) do {(void)__DECLARE_RCC_ATOMIC_ENV; i2c_ll_set_source_clk(__VA_ARGS__);} while(0)
800800

801801
/**
802802
* @brief Set LP I2C source clock

esp32p4/include/hal/include/hal/i2c_hal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void _i2c_hal_set_bus_timing(i2c_hal_context_t *hal, int scl_freq, i2c_clock_sou
9898
#if SOC_PERIPH_CLK_CTRL_SHARED
9999
/// use a macro to wrap the function, force the caller to use it in a critical section
100100
/// the critical section needs to declare the __DECLARE_RCC_ATOMIC_ENV variable in advance
101-
#define i2c_hal_set_bus_timing(...) do {_i2c_hal_set_bus_timing(__VA_ARGS__);} while(0)
101+
#define i2c_hal_set_bus_timing(...) do {(void)__DECLARE_RCC_ATOMIC_ENV; _i2c_hal_set_bus_timing(__VA_ARGS__);} while(0)
102102
#else
103103
#define i2c_hal_set_bus_timing(...) _i2c_hal_set_bus_timing(__VA_ARGS__)
104104
#endif

esp32p4/lib/libesp_app_format.a

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

esp32p4/lib/libesp_driver_ppa.a

0 Bytes
Binary file not shown.

esp32p4/platformio-build.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,12 @@
7171
)
7272

7373
env.Append(
74-
7574
ASFLAGS=[
76-
"-march=rv32imafc_zicsr_zifencei_xesppie",
77-
"-mabi=ilp32f"
75+
"-march=rv32imc"
7876
],
7977

8078
ASPPFLAGS=[
81-
"-x", "assembler-with-cpp",
82-
"-march=rv32imafc_zicsr_zifencei_xesppie",
83-
"-mabi=ilp32f"
79+
"-x", "assembler-with-cpp"
8480
],
8581

8682
CFLAGS=[

0 commit comments

Comments
 (0)