Home
last modified time | relevance | path

Searched refs:fix (Results 1 – 25 of 36) sorted by relevance

12

/hal_espressif-3.6.0/components/nvs_flash/host_test/nvs_page_test/main/
Dnvs_page_test.cpp55 PartitionMockFixture fix; in test_Page_load__uninitialized_page_has_0xfe() local
58 fix.raw_header[511] = 0xfe; in test_Page_load__uninitialized_page_has_0xfe()
60 esp_partition_read_raw_ReturnArrayThruPtr_dst(fix.raw_header, 32); in test_Page_load__uninitialized_page_has_0xfe()
63 esp_partition_read_raw_ReturnArrayThruPtr_dst(fix.raw_header, 512); in test_Page_load__uninitialized_page_has_0xfe()
66 TEST_ASSERT_EQUAL(ESP_OK, page.load(&fix.part_mock, 0)); in test_Page_load__uninitialized_page_has_0xfe()
75 PartitionMockFixture fix; in test_Page_load__initialized_corrupt_header() local
85 TEST_ASSERT_EQUAL(ESP_OK, page.load(&fix.part_mock, 0)); in test_Page_load__initialized_corrupt_header()
94 PartitionMockFixture fix; in test_Page_load__corrupt_entry_table() local
127 esp_partition_write_raw_ExpectAndReturn(&fix.part_mock.partition, 32, nullptr, 4, ESP_OK); in test_Page_load__corrupt_entry_table()
136 TEST_ASSERT_EQUAL(ESP_OK, page.load(&fix.part_mock, 0)); in test_Page_load__corrupt_entry_table()
[all …]
/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/host_test/gpio/main/
Dgpio_cxx_test.cpp110 GPIOFixture fix; variable
111 gpio_set_level_ExpectAndReturn(static_cast<gpio_num_t>(fix.num.get_num()), 1, ESP_FAIL);
113 GPIO_Output gpio(fix.num);
120 GPIOFixture fix; variable
121 gpio_set_level_ExpectAndReturn(static_cast<gpio_num_t>(fix.num.get_num()), 1, ESP_OK);
123 GPIO_Output gpio(fix.num);
130 GPIOFixture fix; variable
131 gpio_set_level_ExpectAndReturn(static_cast<gpio_num_t>(fix.num.get_num()), 0, ESP_FAIL);
133 GPIO_Output gpio(fix.num);
140 GPIOFixture fix; variable
[all …]
/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/test/
Dtest_esp_event_cxx.cpp215 EventLoopFix fix; variable
224 }, TEMPLATE_EVENT_0, fix.api); in __anon298e7b430902()
226 fix.event_loop.post_event_data(ESPEvent(TEST_EVENT_BASE_0, TEST_EVENT_ID_0), data_sent);
331 EventLoopFix fix; variable
338 ESPEventReg registration(fix.handler0, TEMPLATE_EVENT_0, fix.api);
341 fix.event_loop.post_event_data(ESPEvent(TEST_EVENT_BASE_0, TEST_EVENT_ID_0), ptr);
343 TEST_ASSERT_EQUAL(true, fix.ev0_called);
348 EventLoopFix fix; variable
350 …std::unique_ptr<ESPEventReg> registration(new ESPEventReg(fix.handler0, TEMPLATE_EVENT_0, fix.api)…
354 TEST_ASSERT(fix.ev0 == TEMPLATE_EVENT_0);
[all …]
Dtest_i2c.cpp163 MasterFixture fix; in i2c_I2CRead() local
181 MasterFixture fix; in i2c_I2CWrite() local
183 I2CWrite writer(fix.data); in i2c_I2CWrite()
197 MasterFixture fix; in i2c_master_read_raw_byte() local
204 future<vector<uint8_t> > fut = fix.master->transfer(reader, ADDR); in i2c_master_read_raw_byte()
219 MasterFixture fix; in i2c_master_write_raw_byte() local
223 std::shared_ptr<I2CWrite> writer(new I2CWrite(fix.data)); in i2c_master_write_raw_byte()
224 future<void> fut = fix.master->transfer(writer, ADDR); in i2c_master_write_raw_byte()
235 MasterFixture fix; in i2c_master_read_multiple_raw_bytes() local
242 future<vector<uint8_t> > fut = fix.master->transfer(reader, ADDR); in i2c_master_read_multiple_raw_bytes()
[all …]
/hal_espressif-3.6.0/components/log/host_test/log_test/main/
Dlog_test.cpp132 PrintFixture fix(ESP_LOG_VERBOSE);
136 CHECK(regex_search(fix.get_print_buffer_string(), test_print) == true);
141 PrintFixture fix(ESP_LOG_DEBUG);
145 CHECK(regex_search(fix.get_print_buffer_string(), test_print) == true);
150 PrintFixture fix(ESP_LOG_INFO);
154 CHECK(regex_search(fix.get_print_buffer_string(), test_print) == true);
159 PrintFixture fix(ESP_LOG_WARN);
163 CHECK(regex_search(fix.get_print_buffer_string(), test_print) == true);
168 PrintFixture fix(ESP_LOG_ERROR);
172 CHECK(regex_search(fix.get_print_buffer_string(), test_print) == true);
[all …]
/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/host_test/esp_timer/main/
Desp_timer_test.cpp108 TimerCreationFixture fix; variable
117 TimerCreationFixture fix; variable
118 esp_timer_start_once_ExpectAndReturn(fix.out_handle, 5000, ESP_ERR_INVALID_STATE);
129 TimerCreationFixture fix; variable
130 esp_timer_start_periodic_ExpectAndReturn(fix.out_handle, 5000, ESP_ERR_INVALID_STATE);
141 TimerCreationFixture fix; variable
156 TimerCreationFixture fix(true);
157 esp_timer_start_once_ExpectAndReturn(fix.out_handle, 5000, ESP_OK);
168 TimerCreationFixture fix(true);
169 esp_timer_start_once_ExpectAndReturn(fix.out_handle, 5000, ESP_OK);
[all …]
/hal_espressif-3.6.0/components/nvs_flash/test_nvs_host/
Dtest_nvs_partition.cpp37 EncryptedPartitionFixture fix(&xts_cfg); variable
39 CHECK(fix.part.read(0, foo, sizeof (foo) -1) == ESP_ERR_INVALID_SIZE);
50 EncryptedPartitionFixture fix(&xts_cfg); variable
52 CHECK(fix.part.write(0, foo, sizeof (foo) -1) == ESP_ERR_INVALID_SIZE);
53 CHECK(fix.part.write(0, foo, sizeof (foo)) == ESP_OK);
54 CHECK(fix.part.write(0, foo, sizeof (foo) * 2) == ESP_OK);
/hal_espressif-3.6.0/components/esptool_py/esptool/docs/en/espefuse/
Dcheck-error-cmd.rst81 Error in BLOCK3, re-burn it again (#0), to fix it. fail_bit=1, num_errors=0
82 Error in BLOCK3, re-burn it again (#1), to fix it. fail_bit=1, num_errors=0
83 Error in BLOCK3, re-burn it again (#2), to fix it. fail_bit=1, num_errors=0
85 Error in BLOCK2, re-burn it again (#0), to fix it. fail_bit=1, num_errors=1
86 Error in BLOCK2, re-burn it again (#1), to fix it. fail_bit=1, num_errors=1
87 Error in BLOCK2, re-burn it again (#2), to fix it. fail_bit=1, num_errors=1
89 Error in BLOCK1, re-burn it again (#0), to fix it. fail_bit=1, num_errors=0
90 Error in BLOCK1, re-burn it again (#1), to fix it. fail_bit=1, num_errors=0
91 Error in BLOCK1, re-burn it again (#2), to fix it. fail_bit=1, num_errors=0
/hal_espressif-3.6.0/examples/peripherals/uart/nmea0183_parser/main/
DKconfig.projbuild44 - Number of satellites in use, fix status (no fix, GPS, DGPS), UTC time;
53 - Fix mode (no fix, 2D, 3D fix);
Dnmea_parser.h109 gps_fix_t fix; /*!< Fix status */ member
Dnmea_parser.c140 esp_gps->parent.fix = (gps_fix_t)strtol(esp_gps->item_str, NULL, 10); in parse_gga()
/hal_espressif-3.6.0/components/esp_event/
DCMakeLists.txt11 # Temporary fix until esp_system is available for linux, too
/hal_espressif-3.6.0/tools/cmake/
Dgit_submodules.cmake53 "Run 'git submodule update --init --recursive' to fix.")
Dutilities.cmake201 # because the "menuconfig" target may be required to fix the problem.
/hal_espressif-3.6.0/examples/wifi/iperf/
DREADME.md8 Removing R140~R145 from the board can fix this issue. Currently the default SPI frequency is set to…
/hal_espressif-3.6.0/docs/en/
Dversions.rst40 …ns have been manually tested, and are updated with "bugfix releases" which fix bugs without changi…
59 - Minor Releases like ``v3.1`` add new functionality and fix bugs but will not change or remove doc…
63 - Bugfix Releases like ``v3.0.1`` only fix bugs and do not add new functionality.
79 …GitHub will notify you whenever a new release is available. Whenever a bug fix release is availabl…
/hal_espressif-3.6.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/
Dasm_avr.inc481 "sbiw r30, 1 \n\t" /* fix stack pointer */
806 "sbiw r30, 1 \n\t" /* fix stack pointer */
937 "sub r26, %[k] \n\t" /* fix up left ptr */
970 "add r28, %[k] \n\t" /* fix up right ptr */
979 "sub r26, %[k] \n\t" /* fix up left ptr (after k is decremented, so next time
987 "eor r1, r1 \n\t" /* fix r1 to be 0 again */
1076 "eor r1, r1 \n\t" /* fix r1 to be 0 again */
/hal_espressif-3.6.0/components/ulp/
DREADME.rst23 …the compiler to produce an "initializer element is not constant" error. To fix this error, move th…
/hal_espressif-3.6.0/.github/ISSUE_TEMPLATE/
Dbug_report.md28 … information as possible under **Other items if possible** will help us locate and fix the problem.
/hal_espressif-3.6.0/.gitlab/merge_request_templates/
DMixed Template.md17 * [ ] Release note entry if this is a new public feature, or a fix for an issue introduced in the p…
/hal_espressif-3.6.0/docs/en/api-guides/
Dhlinterrupts.rst31 …2. If :ref:`CONFIG_BTDM_CTRL_HLI` is enabled, `xt_debugexception` is used to fix `live lock issue …
/hal_espressif-3.6.0/examples/storage/sd_card/sdspi/
DREADME.md122 …ort disappearing from your PC device list - rebooting your computer should fix the issue. After yo…
/hal_espressif-3.6.0/docs/en/api-reference/
Dkconfig.rst52 recommendations how to fix issues (if there are any). Please note that the
/hal_espressif-3.6.0/components/esptool_py/esptool/
DCONTRIBUTING.rst88 …sage will be displayed. If the error was with ``black`` then the tool will fix them for you automa…
/hal_espressif-3.6.0/components/driver/
DKconfig180 … This option is intended to fix the bug that ESP32 is not able to switch to configured

12