Alexey Lapshin 
							
						 
					 
					
						
						
							
						
						080f1a0b0d 
					 
					
						
						
							
							feat(debugging): move gdbinit generation to CMake  
						
						 
						
						... 
						
						
						
						This feature is useful for 3rd-party software to run GDB with predefined
options that described in project_description.json file
allow to pass custom options to "idf.py gdb":
  --gdb-commands: command line arguments for gdb. (without changes)
  -ex: pass command to gdb.
  -x: pass gdbinit file to gdb. Alias for old --gdbinit command 
						
						
					 
					
						2024-12-06 19:32:34 +07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Aditya Patwardhan 
							
						 
					 
					
						
						
							
						
						5b0b23cfb3 
					 
					
						
						
							
							Merge branch 'feature/add_compiler_no_merge_constants_v5.2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						feat: add compiler config for not merging const sections (v5.2)
See merge request espressif/esp-idf!34087  
						
						
					 
					
						2024-11-15 15:32:51 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mahavir Jain 
							
						 
					 
					
						
						
							
						
						01333b3172 
					 
					
						
						
							
							feat: add compiler config for not merging const sections  
						
						 
						
						... 
						
						
						
						Probably GCC-13.x and on-wards uses "-fmerge-constants" to merge
the const section (string/floating-point) across compilation units.
This makes it difficult to properly analyze the size output of rodata
section across libraries, the merged section (big in size) is showed
across a single library.
The config option added here can help to disable this compiler behavior
and help to provide better size analysis. It can be used during
development phase only as it increases rodata section size. 
						
						
					 
					
						2024-10-10 15:35:54 +05:30  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Marius Vikhammer 
							
						 
					 
					
						
						
							
						
						8ba7c287b0 
					 
					
						
						
							
							Merge branch 'task/add_ldgen_exception_for_freertos_v5.2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						fix(freertos): Added freertos and ringbuf fragments to the exception list of ldgen mapping checks (v5.2)
See merge request espressif/esp-idf!33216  
						
						
					 
					
						2024-10-10 16:27:15 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Erhan Kurubas 
							
						 
					 
					
						
						
							
						
						03e3c7c54b 
					 
					
						
						
							
							test(esp-coredump): add test for the soft sha config  
						
						 
						
						
						
						
					 
					
						2024-10-01 10:07:23 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Konstantin Kondrashov 
							
						 
					 
					
						
						
							
						
						d6f01e03d9 
					 
					
						
						
							
							fix(examples): Increases partition table offset for SBV2+FE test  
						
						 
						
						
						
						
					 
					
						2024-09-18 09:58:29 +03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sudeep Mohanty 
							
						 
					 
					
						
						
							
						
						e90bb54f8b 
					 
					
						
						
							
							test(freertos): Added build test for function in flash with -Os optimation  
						
						 
						
						... 
						
						
						
						This commit adds a build test for when FreeRTOS and esp_ringbuf functions
are placed in flash and the compiler optimizes for code size. 
						
						
					 
					
						2024-08-30 09:16:52 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Omar Chebib 
							
						 
					 
					
						
						
							
						
						063fbc872d 
					 
					
						
						
							
							fix(ldgen): fix linker script generation from a single-entry fragment file  
						
						 
						
						
						
						
					 
					
						2024-08-27 11:41:15 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jiang Jiang Jian 
							
						 
					 
					
						
						
							
						
						f2f31efa26 
					 
					
						
						
							
							Merge branch 'feature/print_panic_while_cache_fail_v5.2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						feat(esp_system): Print backtrace for both CPUs when cache error does not determine CPU (v5.2)
See merge request espressif/esp-idf!31131  
						
						
					 
					
						2024-08-23 14:34:25 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jiang Jiang Jian 
							
						 
					 
					
						
						
							
						
						a54dfc3912 
					 
					
						
						
							
							Merge branch 'contrib/github_pr_13578_v5.2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						Make FreeRTOS configUSE_TIMERS optional in KConfig (GitHub PR) (v5.2)
See merge request espressif/esp-idf!32808  
						
						
					 
					
						2024-08-23 13:45:34 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Xiao Xufeng 
							
						 
					 
					
						
						
							
						
						197c750067 
					 
					
						
						
							
							ci(mmu): add unicore test  
						
						 
						
						
						
						
					 
					
						2024-08-16 18:09:30 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Marius Vikhammer 
							
						 
					 
					
						
						
							
						
						251b8cd860 
					 
					
						
						
							
							fix(freertos): split idf_additions.c event groups to separate file  
						
						 
						
						
						
						
					 
					
						2024-08-13 10:15:40 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Konstantin Kondrashov 
							
						 
					 
					
						
						
							
						
						271c611485 
					 
					
						
						
							
							feat(esp_system): Print backtrace for both CPUs when cache error does not determine CPU  
						
						 
						
						
						
						
					 
					
						2024-08-07 19:17:52 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Island 
							
						 
					 
					
						
						
							
						
						1491b579a8 
					 
					
						
						
							
							Merge branch 'bugfix/fix_some_ble_bugs_cjh_v5.2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						Fixed some BLE bugs 240620 (backport v5.2)
See merge request espressif/esp-idf!31647  
						
						
					 
					
						2024-06-26 20:33:19 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								chenjianhua 
							
						 
					 
					
						
						
							
						
						8334a10f6d 
					 
					
						
						
							
							fix(bt): Update bt lib for ESP32-C3 and ESP32-S3(eca46a0)  
						
						 
						
						... 
						
						
						
						- Fixed adv data buffer free after restart adv
- Fixed BLE interrupt allocation using esp API 
						
						
					 
					
						2024-06-25 00:04:14 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								morris 
							
						 
					 
					
						
						
							
						
						8e79afe7c8 
					 
					
						
						
							
							fix(i2c_lcd): using function overloading to keep esp_lcd_new_panel_io_i2c  
						
						 
						
						... 
						
						
						
						becuase _Generic is not available in C++
Closes https://github.com/espressif/esp-idf/issues/14037  
						
						
					 
					
						2024-06-24 11:57:40 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								morris 
							
						 
					 
					
						
						
							
						
						4e7dd0ce2b 
					 
					
						
						
							
							fix(lcd): build errors with deprecated lcd types in cpp  
						
						 
						
						... 
						
						
						
						Closes https://github.com/espressif/esp-idf/issues/14029  
						
						
					 
					
						2024-06-24 11:57:40 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Alexey Gerenkov 
							
						 
					 
					
						
						
							
						
						3068ae65fc 
					 
					
						
						
							
							Merge branch 'fix_coredump_build_error_v5.2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						Fix coredump build error (v5.2)
See merge request espressif/esp-idf!30463  
						
						
					 
					
						2024-06-04 21:25:26 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Omar Chebib 
							
						 
					 
					
						
						
							
						
						742b3a1814 
					 
					
						
						
							
							fix(esp_hw_support): clear reserved interrupts that are not applicable for each target  
						
						 
						
						
						
						
					 
					
						2024-05-30 12:12:44 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Erhan Kurubas 
							
						 
					 
					
						
						
							
						
						38b9e8789f 
					 
					
						
						
							
							ci(coredump): enable custom stack tests for riscv chips  
						
						 
						
						
						
						
					 
					
						2024-04-24 15:09:22 +03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Laukik Hase 
							
						 
					 
					
						
						
							
						
						17ffe58051 
					 
					
						
						
							
							fix(esp_hw_support): Fix the flash I/DROM region PMP protection  
						
						 
						
						
						
						
					 
					
						2024-04-03 15:48:46 +05:30  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Konstantin Kondrashov 
							
						 
					 
					
						
						
							
						
						00f2e33008 
					 
					
						
						
							
							fix(esp_system): Fix build when ANTI_ROLLBACK=y and PANIC_SILENT_REBOOT=y  
						
						 
						
						... 
						
						
						
						Fix a case when two options are set as
CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK=y
CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT=y
Closes https://github.com/espressif/esp-idf/issues/13417  
						
						
					 
					
						2024-03-20 22:08:47 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Marius Vikhammer 
							
						 
					 
					
						
						
							
						
						387f48aa9a 
					 
					
						
						
							
							fix(rom): fixed systimer always using ROM implementation  
						
						 
						
						
						
						
					 
					
						2024-03-13 17:25:39 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Erhan Kurubas 
							
						 
					 
					
						
						
							
						
						5ba3b99f2b 
					 
					
						
						
							
							feat(coredump): use SHA ROM functions for all targets except ESP32  
						
						 
						
						... 
						
						
						
						For ESP32, continue using mbedtls due to a required ROM patch for the SHA implementation.
For other targets, we can now leverage the ROM functions. 
						
						
					 
					
						2024-03-06 13:08:09 +01:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mahavir Jain 
							
						 
					 
					
						
						
							
						
						8c6ce09982 
					 
					
						
						
							
							Merge branch 'fix/pmp_idcache_reg_prot_v5.2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						fix(esp_hw_support): Fix the I/DCACHE region PMP protection (v5.2)
See merge request espressif/esp-idf!29356  
						
						
					 
					
						2024-03-06 19:55:11 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Laukik Hase 
							
						 
					 
					
						
						
							
						
						4a7cda8cb0 
					 
					
						
						
							
							feat(tools/test_apps): Add violation tests for the flash I/DROM region  
						
						 
						
						... 
						
						
						
						- For SoCs supporting PMP 
						
						
					 
					
						2024-03-01 10:25:08 +05:30  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Darian Leung 
							
						 
					 
					
						
						
							
						
						6bacffff21 
					 
					
						
						
							
							change(console): Add build test for no console output  
						
						 
						
						... 
						
						
						
						This commit adds a build test to test the scenario where both the primary and
secondary console outputs are disabled by Kconfig. 
						
						
					 
					
						2024-02-29 17:39:34 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mahavir Jain 
							
						 
					 
					
						
						
							
						
						4c95aa445d 
					 
					
						
						
							
							fix(ota): additional checks for secure version in anti-rollback case  
						
						 
						
						... 
						
						
						
						Some additional checks related to secure version of the application in
anti-rollback case have been added to avoid any attempts to boot lower
security version but valid application (e.g., passive partition image).
- Read secure_version under sha256 protection
- First check has been added in the bootloader to ensure correct secure
  version after application verification and loading stage. This check
  happens before setting up the flash cache mapping and handling over
  the final control to application. This check ensures that application
  was not swapped (e.g., to lower security version but valid image) just
  before the load stage in bootloader.
- Second check has been added in the application startup code to ensure
  that currently booting app has higher security version than the one
  programmed in the eFuse for anti-rollback scenario. This will ensure
  that only the legit application boots-up on the device for
  anti-rollback case. 
						
						
					 
					
						2024-02-15 15:08:26 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jiang Jiang Jian 
							
						 
					 
					
						
						
							
						
						0d8ca93e8d 
					 
					
						
						
							
							Merge branch 'feature/update-gdb-to-12.1_20231023_v5.2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						feat(tools): update gdb version to 12.1_20231023 (v5.2)
See merge request espressif/esp-idf!27376  
						
						
					 
					
						2023-12-26 10:32:07 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Erhan Kurubas 
							
						 
					 
					
						
						
							
						
						d9d388dae7 
					 
					
						
						
							
							feat(coredump): save twdt panic output to coredump elf file  
						
						 
						
						
						
						
					 
					
						2023-12-07 15:21:24 +01:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jiang Jiang Jian 
							
						 
					 
					
						
						
							
						
						97594d2076 
					 
					
						
						
							
							Merge branch 'backport/add_config_to_set_custom_mac_as_base_mac_v5_2' into 'release/v5.2'  
						
						 
						
						... 
						
						
						
						feat(mac): Add a configuration to set custom MAC as base MAC(Backport V5.2)
See merge request espressif/esp-idf!27738  
						
						
					 
					
						2023-12-07 21:03:51 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								zwx 
							
						 
					 
					
						
						
							
						
						0d4d3c103f 
					 
					
						
						
							
							feat(mac): Add a configuration to set custom MAC as base MAC  
						
						 
						
						
						
						
					 
					
						2023-12-07 14:14:55 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Darian Leung 
							
						 
					 
					
						
						
							
						
						555bd367e1 
					 
					
						
						
							
							change(xtensa): Deprecate ".../xtensa_context.h" include path  
						
						 
						
						... 
						
						
						
						This commit deprecates the "freertos/xtensa_context.h" and "xtensa/xtensa_context.h"
include paths. Users should use "xtensa_context.h" instead.
- Replace legacy include paths
- Removed some unnecessary includes of "xtensa_api.h"
- Add warning to compatibility header 
						
						
					 
					
						2023-12-05 18:04:52 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Darian Leung 
							
						 
					 
					
						
						
							
						
						913550f62c 
					 
					
						
						
							
							fix(freertos/idf): Fix invalid xCoreID arguments in single-core  
						
						 
						
						... 
						
						
						
						IDF FreeRTOS v10.5.1 no longer accepts out of range xCoreID arguments in
"PinnedToCore" task creation functions when building for single-core. This
commit fixes those violations through ESP-IDF. 
						
						
					 
					
						2023-12-04 15:03:58 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Marius Vikhammer 
							
						 
					 
					
						
						
							
						
						faf6bc933e 
					 
					
						
						
							
							ci(system): fixed and enabled misc system build tests  
						
						 
						
						
						
						
					 
					
						2023-11-29 16:59:15 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Alexey Lapshin 
							
						 
					 
					
						
						
							
						
						f28c47e4af 
					 
					
						
						
							
							feat(tools): update gdb version to 12.1_20231023  
						
						 
						
						
						
						
					 
					
						2023-11-24 11:12:09 +04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Marius Vikhammer 
							
						 
					 
					
						
						
							
						
						d6a79b5108 
					 
					
						
						
							
							Merge branch 'feature/hello_world_linux' into 'master'  
						
						 
						
						... 
						
						
						
						feat(linux_target): enable hello world example for linux target
See merge request espressif/esp-idf!26638  
						
						
					 
					
						2023-10-25 10:22:49 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Xiao Xufeng 
							
						 
					 
					
						
						
							
						
						1f5fb3f921 
					 
					
						
						
							
							spi_flash: fixed issue that enabling HPM-DC by default may cause app unable to restart  
						
						 
						
						
						
						
					 
					
						2023-10-24 10:38:08 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Marius Vikhammer 
							
						 
					 
					
						
						
							
						
						8c52b0845d 
					 
					
						
						
							
							feat(linux_target): enable hello world example for linux target  
						
						 
						
						
						
						
					 
					
						2023-10-24 10:04:09 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Euripedes Rocha 
							
						 
					 
					
						
						
							
						
						9628c9b5b8 
					 
					
						
						
							
							ci(mqtt): Move publish tests to nightly  
						
						 
						
						... 
						
						
						
						Publish test cases are prone to fail depending on Ci load. 
						
						
					 
					
						2023-10-20 07:44:35 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Zim Kalinowski 
							
						 
					 
					
						
						
							
						
						fa1a3ce0b5 
					 
					
						
						
							
							Merge branch 'refactor/components_linux_compatible' into 'master'  
						
						 
						
						... 
						
						
						
						Exclude all currently incompatible components from Linux build
Closes IDF-8318 and IDF-5996
See merge request espressif/esp-idf!25598  
						
						
					 
					
						2023-10-18 20:17:49 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jakob Hasse 
							
						 
					 
					
						
						
							
						
						548022fbe6 
					 
					
						
						
							
							refactor(linux): excluded all non-Linux components from build  
						
						 
						
						... 
						
						
						
						* All components which won't build (yet) on Linux are excluded.
  This enables switching to Linux in an application without
  explicitly setting COMPONENTS to main in the main
  CMakeLists.txt.
* ESP Timer provides headers for Linux now
* automatically disabling LWIP in Kconfig if it is not available
doc(linux): brought section
  "Component Linux/Mock Support Overview" up to date 
						
						
					 
					
						2023-10-16 17:06:54 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fu Hanxi 
							
						 
					 
					
						
						
							
						
						4dbf8c8948 
					 
					
						
						
							
							ci: remove ttfw related files  
						
						 
						
						
						
						
					 
					
						2023-10-16 10:23:09 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fu Hanxi 
							
						 
					 
					
						
						
							
						
						ca63d0f943 
					 
					
						
						
							
							test: move network_tests from examples/ to tools/test_apps  
						
						 
						
						
						
						
					 
					
						2023-10-16 10:18:03 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mahavir Jain 
							
						 
					 
					
						
						
							
						
						1501aef1b3 
					 
					
						
						
							
							Merge branch 'feature/enable_secure_boot_esp32p4' into 'master'  
						
						 
						
						... 
						
						
						
						feat(secure_boot): add secure boot support for esp32p4
Closes IDF-7544 and IDF-7745
See merge request espressif/esp-idf!26335  
						
						
					 
					
						2023-10-16 11:07:14 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Vychodil 
							
						 
					 
					
						
						
							
						
						64befdca3a 
					 
					
						
						
							
							Merge branch 'feature/partition_readonly_flag' into 'master'  
						
						 
						
						... 
						
						
						
						feat(partition_table): Add read-only partition flag and functionality
Closes IDF-6421
See merge request espressif/esp-idf!24855  
						
						
					 
					
						2023-10-13 11:11:07 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Rocha Euripedes 
							
						 
					 
					
						
						
							
						
						ade6384954 
					 
					
						
						
							
							Merge branch 'ci/publish_connect_refactor' into 'master'  
						
						 
						
						... 
						
						
						
						Publish connect test refactor
See merge request espressif/esp-idf!25311  
						
						
					 
					
						2023-10-12 20:03:28 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								harshal.patil 
							
						 
					 
					
						
						
							
						
						f46a93e565 
					 
					
						
						
							
							feat(secure_boot): add secure boot support for esp32p4  
						
						 
						
						
						
						
					 
					
						2023-10-12 10:12:54 +05:30  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Euripedes Rocha 
							
						 
					 
					
						
						
							
						
						fba535756e 
					 
					
						
						
							
							ci(mqtt): Refactor publish connect test  
						
						 
						
						
						
						
					 
					
						2023-10-11 14:38:52 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Adam Múdry 
							
						 
					 
					
						
						
							
						
						ab1eb37fe8 
					 
					
						
						
							
							feat(partition_table): Add read-only partition flag and functionality  
						
						 
						
						
						
						
					 
					
						2023-10-11 00:01:05 +02:00