From bef0bade14fcc947297c4ec59c4d35618d972e5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Heredero?= Date: Tue, 19 Sep 2023 15:59:49 +0200 Subject: [PATCH] Initial commit --- documentation.html | 13 + src/mdw/trace/config/trace-config.h | 19 + src/mdw/trace/doxygen/Doxyfile | 2667 +++ .../trace/doxygen/output/html/annotated.html | 79 + src/mdw/trace/doxygen/output/html/bc_s.png | Bin 0 -> 676 bytes src/mdw/trace/doxygen/output/html/bdwn.png | Bin 0 -> 147 bytes .../output/html/class_trace-members.html | 83 + .../doxygen/output/html/class_trace.html | 210 + .../trace/doxygen/output/html/classes.html | 80 + src/mdw/trace/doxygen/output/html/closed.png | Bin 0 -> 132 bytes src/mdw/trace/doxygen/output/html/doc.png | Bin 0 -> 746 bytes src/mdw/trace/doxygen/output/html/doxygen.css | 1827 ++ src/mdw/trace/doxygen/output/html/doxygen.svg | 26 + .../trace/doxygen/output/html/dynsections.js | 121 + .../trace/doxygen/output/html/examples.html | 77 + src/mdw/trace/doxygen/output/html/files.html | 79 + .../doxygen/output/html/folderclosed.png | Bin 0 -> 616 bytes .../trace/doxygen/output/html/folderopen.png | Bin 0 -> 597 bytes .../trace/doxygen/output/html/functions.html | 77 + .../doxygen/output/html/functions_func.html | 77 + .../doxygen/output/html/graph_legend.html | 134 + .../doxygen/output/html/graph_legend.md5 | 1 + .../doxygen/output/html/graph_legend.png | Bin 0 -> 12720 bytes src/mdw/trace/doxygen/output/html/index.html | 99 + src/mdw/trace/doxygen/output/html/jquery.js | 35 + src/mdw/trace/doxygen/output/html/menu.js | 127 + src/mdw/trace/doxygen/output/html/menudata.js | 35 + src/mdw/trace/doxygen/output/html/nav_f.png | Bin 0 -> 153 bytes src/mdw/trace/doxygen/output/html/nav_g.png | Bin 0 -> 95 bytes src/mdw/trace/doxygen/output/html/nav_h.png | Bin 0 -> 98 bytes src/mdw/trace/doxygen/output/html/open.png | Bin 0 -> 123 bytes .../doxygen/output/html/search/all_0.html | 37 + .../trace/doxygen/output/html/search/all_0.js | 4 + .../doxygen/output/html/search/all_1.html | 37 + .../trace/doxygen/output/html/search/all_1.js | 4 + .../doxygen/output/html/search/all_2.html | 37 + .../trace/doxygen/output/html/search/all_2.js | 4 + .../doxygen/output/html/search/all_3.html | 37 + .../trace/doxygen/output/html/search/all_3.js | 4 + .../doxygen/output/html/search/all_4.html | 37 + .../trace/doxygen/output/html/search/all_4.js | 4 + .../doxygen/output/html/search/classes_0.html | 37 + .../doxygen/output/html/search/classes_0.js | 4 + .../doxygen/output/html/search/close.svg | 31 + .../output/html/search/functions_0.html | 37 + .../doxygen/output/html/search/functions_0.js | 4 + .../output/html/search/functions_1.html | 37 + .../doxygen/output/html/search/functions_1.js | 4 + .../output/html/search/functions_2.html | 37 + .../doxygen/output/html/search/functions_2.js | 4 + .../output/html/search/functions_3.html | 37 + .../doxygen/output/html/search/functions_3.js | 4 + .../doxygen/output/html/search/mag_sel.svg | 74 + .../doxygen/output/html/search/nomatches.html | 13 + .../doxygen/output/html/search/pages_0.html | 37 + .../doxygen/output/html/search/pages_0.js | 4 + .../doxygen/output/html/search/search.css | 263 + .../doxygen/output/html/search/search.js | 794 + .../doxygen/output/html/search/search_l.png | Bin 0 -> 567 bytes .../doxygen/output/html/search/search_m.png | Bin 0 -> 158 bytes .../doxygen/output/html/search/search_r.png | Bin 0 -> 553 bytes .../doxygen/output/html/search/searchdata.js | 24 + .../trace/doxygen/output/html/splitbar.png | Bin 0 -> 314 bytes .../trace/doxygen/output/html/sync_off.png | Bin 0 -> 853 bytes src/mdw/trace/doxygen/output/html/sync_on.png | Bin 0 -> 845 bytes src/mdw/trace/doxygen/output/html/tab_a.png | Bin 0 -> 142 bytes src/mdw/trace/doxygen/output/html/tab_b.png | Bin 0 -> 169 bytes src/mdw/trace/doxygen/output/html/tab_h.png | Bin 0 -> 177 bytes src/mdw/trace/doxygen/output/html/tab_s.png | Bin 0 -> 184 bytes src/mdw/trace/doxygen/output/html/tabs.css | 1 + .../html/trace-example01_8cpp-example.html | 90 + .../doxygen/output/html/trace_8h_source.html | 123 + src/mdw/trace/doxygen/trace.tag | 53 + src/mdw/trace/examples/trace-example01.cpp | 15 + src/mdw/trace/trace.h | 105 + .../f7-disco-gcc/board/ledcontroller.cpp | 146 + .../f7-disco-gcc/board/ledcontroller.h | 37 + src/platform/f7-disco-gcc/board/trace.cpp | 149 + .../config/ledcontroller-config.h | 24 + .../f7-disco-gcc/config/trace-config.h | 34 + .../f7-disco-gcc/config/uart-config.h | 22 + .../f7-disco-gcc/mcu/critical/critical.cpp | 41 + .../f7-disco-gcc/mcu/critical/critical.h | 17 + src/platform/f7-disco-gcc/mcu/hal/uart.cpp | 93 + src/platform/f7-disco-gcc/mcu/hal/uart.h | 66 + src/platform/f7-disco-gcc/mcu/mcu.h | 21 + src/platform/qt/board/board.cpp | 10 + src/platform/qt/board/board.h | 12 + src/platform/qt/board/ledcontroller.cpp | 78 + src/platform/qt/board/ledcontroller.h | 37 + src/platform/qt/board/trace.cpp | 53 + src/platform/qt/config/ledcontroller-config.h | 6 + src/platform/qt/platform-qt.pri | 13 + src/simplified/xf/config/xf-config.h | 10 + src/simplified/xf/core/behavior.cpp | 6 + src/simplified/xf/core/customevent.cpp | 3 + src/simplified/xf/core/defaulttransition.cpp | 3 + src/simplified/xf/core/initialevent.cpp | 3 + src/simplified/xf/core/timeout.cpp | 3 + src/simplified/xf/doxygen/Doxyfile | 2678 +++ .../xf/doxygen/images/cmd-simple-xf.png | Bin 0 -> 113512 bytes .../xf/doxygen/images/comp-simple-xf.png | Bin 0 -> 45463 bytes .../xf/doxygen/output/html/annotated.html | 97 + .../xf/doxygen/output/html/bc_s.png | Bin 0 -> 676 bytes .../xf/doxygen/output/html/bdwn.png | Bin 0 -> 147 bytes .../output/html/behavior_8h_source.html | 150 + .../html/c-wrapper-functions_8h_source.html | 101 + .../html/class_dispatcher_thread-members.html | 80 + .../output/html/class_dispatcher_thread.html | 190 + .../class_dispatcher_thread__coll__graph.map | 5 + .../class_dispatcher_thread__coll__graph.md5 | 1 + .../class_dispatcher_thread__coll__graph.png | Bin 0 -> 7799 bytes ...lass_dispatcher_thread__inherit__graph.map | 4 + ...lass_dispatcher_thread__inherit__graph.md5 | 1 + ...lass_dispatcher_thread__inherit__graph.png | Bin 0 -> 2230 bytes .../output/html/class_x_f-members.html | 83 + .../xf/doxygen/output/html/class_x_f.html | 255 + .../output/html/class_x_f__coll__graph.map | 3 + .../output/html/class_x_f__coll__graph.md5 | 1 + .../output/html/class_x_f__coll__graph.png | Bin 0 -> 1529 bytes .../html/class_x_f_behavior-members.html | 92 + .../output/html/class_x_f_behavior.html | 374 + .../html/class_x_f_behavior__coll__graph.map | 5 + .../html/class_x_f_behavior__coll__graph.md5 | 1 + .../html/class_x_f_behavior__coll__graph.png | Bin 0 -> 12361 bytes .../class_x_f_behavior__inherit__graph.map | 4 + .../class_x_f_behavior__inherit__graph.md5 | 1 + .../class_x_f_behavior__inherit__graph.png | Bin 0 -> 6581 bytes .../html/class_x_f_custom_event-members.html | 96 + .../output/html/class_x_f_custom_event.html | 283 + .../class_x_f_custom_event__coll__graph.map | 5 + .../class_x_f_custom_event__coll__graph.md5 | 1 + .../class_x_f_custom_event__coll__graph.png | Bin 0 -> 7888 bytes ...class_x_f_custom_event__inherit__graph.map | 4 + ...class_x_f_custom_event__inherit__graph.md5 | 1 + ...class_x_f_custom_event__inherit__graph.png | Bin 0 -> 4692 bytes .../class_x_f_default_transition-members.html | 94 + .../html/class_x_f_default_transition.html | 215 + ...ss_x_f_default_transition__coll__graph.map | 5 + ...ss_x_f_default_transition__coll__graph.md5 | 1 + ...ss_x_f_default_transition__coll__graph.png | Bin 0 -> 7347 bytes ...x_f_default_transition__inherit__graph.map | 4 + ...x_f_default_transition__inherit__graph.md5 | 1 + ...x_f_default_transition__inherit__graph.png | Bin 0 -> 4338 bytes .../html/class_x_f_dispatcher-members.html | 89 + .../output/html/class_x_f_dispatcher.html | 412 + .../class_x_f_dispatcher__coll__graph.map | 8 + .../class_x_f_dispatcher__coll__graph.md5 | 1 + .../class_x_f_dispatcher__coll__graph.png | Bin 0 -> 30264 bytes .../class_x_f_dispatcher__inherit__graph.map | 4 + .../class_x_f_dispatcher__inherit__graph.md5 | 1 + .../class_x_f_dispatcher__inherit__graph.png | Bin 0 -> 5460 bytes .../output/html/class_x_f_event-members.html | 93 + .../doxygen/output/html/class_x_f_event.html | 331 + .../html/class_x_f_event__coll__graph.map | 4 + .../html/class_x_f_event__coll__graph.md5 | 1 + .../html/class_x_f_event__coll__graph.png | Bin 0 -> 5395 bytes .../html/class_x_f_event__inherit__graph.map | 7 + .../html/class_x_f_event__inherit__graph.md5 | 1 + .../html/class_x_f_event__inherit__graph.png | Bin 0 -> 20610 bytes .../html/class_x_f_event_queue-members.html | 97 + .../output/html/class_x_f_event_queue.html | 546 + .../class_x_f_event_queue__coll__graph.map | 6 + .../class_x_f_event_queue__coll__graph.md5 | 1 + .../class_x_f_event_queue__coll__graph.png | Bin 0 -> 13072 bytes .../class_x_f_event_queue__inherit__graph.map | 4 + .../class_x_f_event_queue__inherit__graph.md5 | 1 + .../class_x_f_event_queue__inherit__graph.png | Bin 0 -> 6558 bytes .../html/class_x_f_event_status-members.html | 88 + .../output/html/class_x_f_event_status.html | 251 + .../class_x_f_event_status__coll__graph.map | 3 + .../class_x_f_event_status__coll__graph.md5 | 1 + .../class_x_f_event_status__coll__graph.png | Bin 0 -> 1371 bytes .../html/class_x_f_initial_event-members.html | 94 + .../output/html/class_x_f_initial_event.html | 193 + .../class_x_f_initial_event__coll__graph.map | 5 + .../class_x_f_initial_event__coll__graph.md5 | 1 + .../class_x_f_initial_event__coll__graph.png | Bin 0 -> 7262 bytes ...lass_x_f_initial_event__inherit__graph.map | 4 + ...lass_x_f_initial_event__inherit__graph.md5 | 1 + ...lass_x_f_initial_event__inherit__graph.png | Bin 0 -> 4267 bytes .../output/html/class_x_f_mutex-members.html | 90 + .../doxygen/output/html/class_x_f_mutex.html | 346 + .../html/class_x_f_mutex__coll__graph.map | 4 + .../html/class_x_f_mutex__coll__graph.md5 | 1 + .../html/class_x_f_mutex__coll__graph.png | Bin 0 -> 4552 bytes .../html/class_x_f_mutex__inherit__graph.map | 4 + .../html/class_x_f_mutex__inherit__graph.md5 | 1 + .../html/class_x_f_mutex__inherit__graph.png | Bin 0 -> 4552 bytes .../html/class_x_f_timeout-members.html | 103 + .../output/html/class_x_f_timeout.html | 300 + .../html/class_x_f_timeout__coll__graph.map | 5 + .../html/class_x_f_timeout__coll__graph.md5 | 1 + .../html/class_x_f_timeout__coll__graph.png | Bin 0 -> 8773 bytes .../class_x_f_timeout__inherit__graph.map | 4 + .../class_x_f_timeout__inherit__graph.md5 | 1 + .../class_x_f_timeout__inherit__graph.png | Bin 0 -> 5430 bytes .../class_x_f_timeout_manager-members.html | 93 + .../html/class_x_f_timeout_manager.html | 412 + ...class_x_f_timeout_manager__coll__graph.map | 5 + ...class_x_f_timeout_manager__coll__graph.md5 | 1 + ...class_x_f_timeout_manager__coll__graph.png | Bin 0 -> 11205 bytes ...ss_x_f_timeout_manager__inherit__graph.map | 4 + ...ss_x_f_timeout_manager__inherit__graph.md5 | 1 + ...ss_x_f_timeout_manager__inherit__graph.png | Bin 0 -> 6836 bytes .../xf/doxygen/output/html/classes.html | 83 + ...assinterface_1_1_x_f_behavior-members.html | 91 + .../html/classinterface_1_1_x_f_behavior.html | 271 + ...nterface_1_1_x_f_behavior__coll__graph.map | 3 + ...nterface_1_1_x_f_behavior__coll__graph.md5 | 1 + ...nterface_1_1_x_f_behavior__coll__graph.png | Bin 0 -> 2376 bytes ...rface_1_1_x_f_behavior__inherit__graph.map | 4 + ...rface_1_1_x_f_behavior__inherit__graph.md5 | 1 + ...rface_1_1_x_f_behavior__inherit__graph.png | Bin 0 -> 6756 bytes ...sinterface_1_1_x_f_dispatcher-members.html | 92 + .../classinterface_1_1_x_f_dispatcher.html | 402 + ...erface_1_1_x_f_dispatcher__coll__graph.map | 3 + ...erface_1_1_x_f_dispatcher__coll__graph.md5 | 1 + ...erface_1_1_x_f_dispatcher__coll__graph.png | Bin 0 -> 2440 bytes ...ace_1_1_x_f_dispatcher__inherit__graph.map | 4 + ...ace_1_1_x_f_dispatcher__inherit__graph.md5 | 1 + ...ace_1_1_x_f_dispatcher__inherit__graph.png | Bin 0 -> 5523 bytes ...interface_1_1_x_f_event_queue-members.html | 88 + .../classinterface_1_1_x_f_event_queue.html | 284 + ...rface_1_1_x_f_event_queue__coll__graph.map | 3 + ...rface_1_1_x_f_event_queue__coll__graph.md5 | 1 + ...rface_1_1_x_f_event_queue__coll__graph.png | Bin 0 -> 1909 bytes ...ce_1_1_x_f_event_queue__inherit__graph.map | 4 + ...ce_1_1_x_f_event_queue__inherit__graph.md5 | 1 + ...ce_1_1_x_f_event_queue__inherit__graph.png | Bin 0 -> 6619 bytes .../classinterface_1_1_x_f_mutex-members.html | 87 + .../html/classinterface_1_1_x_f_mutex.html | 254 + ...ssinterface_1_1_x_f_mutex__coll__graph.map | 3 + ...ssinterface_1_1_x_f_mutex__coll__graph.md5 | 1 + ...ssinterface_1_1_x_f_mutex__coll__graph.png | Bin 0 -> 1690 bytes ...nterface_1_1_x_f_mutex__inherit__graph.map | 4 + ...nterface_1_1_x_f_mutex__inherit__graph.md5 | 1 + ...nterface_1_1_x_f_mutex__inherit__graph.png | Bin 0 -> 4568 bytes ...rface_1_1_x_f_timeout_manager-members.html | 92 + ...lassinterface_1_1_x_f_timeout_manager.html | 365 + ...e_1_1_x_f_timeout_manager__coll__graph.map | 3 + ...e_1_1_x_f_timeout_manager__coll__graph.md5 | 1 + ...e_1_1_x_f_timeout_manager__coll__graph.png | Bin 0 -> 3113 bytes ..._1_x_f_timeout_manager__inherit__graph.map | 4 + ..._1_x_f_timeout_manager__inherit__graph.md5 | 1 + ..._1_x_f_timeout_manager__inherit__graph.png | Bin 0 -> 6882 bytes .../xf/doxygen/output/html/closed.png | Bin 0 -> 132 bytes .../xf/doxygen/output/html/cmd-simple-xf.png | Bin 0 -> 113512 bytes .../xf/doxygen/output/html/comp-simple-xf.png | Bin 0 -> 45463 bytes .../output/html/customevent_8h_source.html | 105 + .../html/defaulttransition_8h_source.html | 96 + .../dir_4270bfced15e0e73154b13468c7c9ad9.html | 78 + .../dir_57cda098af696b4de7fb60a88403e4d2.html | 78 + .../dir_5a361383a26c97640254246527d75310.html | 78 + .../dir_651562d8bf6cfd3e81eff5b570d7df50.html | 82 + .../dir_6529456bf0e894bbd172ced5a1b441f6.html | 82 + .../dir_82ab3dd590b017e50c86444bc9a71ec7.html | 78 + .../dir_9608b59ac3ea3c1e535ab29e1ccc0ee7.html | 78 + .../dir_9f351d46ce3cc29445a41dc3a31e6919.html | 78 + .../dir_d44c64559bbebec7f509842c48db8b23.html | 82 + src/simplified/xf/doxygen/output/html/doc.png | Bin 0 -> 746 bytes .../xf/doxygen/output/html/doxygen.css | 1827 ++ .../xf/doxygen/output/html/doxygen.svg | 26 + .../xf/doxygen/output/html/dynsections.js | 121 + .../doxygen/output/html/event_8h_source.html | 138 + .../output/html/eventstatus_8h_source.html | 131 + .../xf/doxygen/output/html/files.html | 107 + .../xf/doxygen/output/html/folderclosed.png | Bin 0 -> 616 bytes .../xf/doxygen/output/html/folderopen.png | Bin 0 -> 597 bytes .../xf/doxygen/output/html/functions.html | 242 + .../doxygen/output/html/functions_enum.html | 75 + .../doxygen/output/html/functions_eval.html | 82 + .../doxygen/output/html/functions_func.html | 193 + .../doxygen/output/html/functions_type.html | 76 + .../doxygen/output/html/functions_vars.html | 92 + .../xf/doxygen/output/html/graph_legend.html | 134 + .../xf/doxygen/output/html/graph_legend.md5 | 1 + .../xf/doxygen/output/html/graph_legend.png | Bin 0 -> 12720 bytes .../output/html/group__port__common.html | 88 + .../output/html/group__port__idf__qt.html | 97 + .../output/html/group__port__idf__qt.map | 4 + .../output/html/group__port__idf__qt.md5 | 1 + .../output/html/group__port__idf__qt.png | Bin 0 -> 1506 bytes .../output/html/group__port__idf__stm32.html | 164 + .../output/html/group__port__idf__stm32.map | 4 + .../output/html/group__port__idf__stm32.md5 | 1 + .../output/html/group__port__idf__stm32.png | Bin 0 -> 1526 bytes .../doxygen/output/html/group__xf__core.html | 106 + .../xf/doxygen/output/html/hierarchy.html | 101 + ..._2xf_2interface_2dispatcher_8h_source.html | 131 + ..._2xf_2interface_2eventqueue_8h_source.html | 109 + ...clude_2xf_2interface_2mutex_8h_source.html | 108 + ..._2interface_2timeoutmanager_8h_source.html | 142 + .../xf/doxygen/output/html/index.html | 115 + .../doxygen/output/html/inherit_graph_0.map | 4 + .../doxygen/output/html/inherit_graph_0.md5 | 1 + .../doxygen/output/html/inherit_graph_0.png | Bin 0 -> 1085 bytes .../doxygen/output/html/inherit_graph_1.map | 4 + .../doxygen/output/html/inherit_graph_1.md5 | 1 + .../doxygen/output/html/inherit_graph_1.png | Bin 0 -> 1098 bytes .../doxygen/output/html/inherit_graph_2.map | 4 + .../doxygen/output/html/inherit_graph_2.md5 | 1 + .../doxygen/output/html/inherit_graph_2.png | Bin 0 -> 1129 bytes .../doxygen/output/html/inherit_graph_3.map | 4 + .../doxygen/output/html/inherit_graph_3.md5 | 1 + .../doxygen/output/html/inherit_graph_3.png | Bin 0 -> 1119 bytes .../doxygen/output/html/inherit_graph_4.map | 4 + .../doxygen/output/html/inherit_graph_4.md5 | 1 + .../doxygen/output/html/inherit_graph_4.png | Bin 0 -> 1044 bytes .../doxygen/output/html/inherit_graph_5.map | 4 + .../doxygen/output/html/inherit_graph_5.md5 | 1 + .../doxygen/output/html/inherit_graph_5.png | Bin 0 -> 1230 bytes .../doxygen/output/html/inherit_graph_6.map | 3 + .../doxygen/output/html/inherit_graph_6.md5 | 1 + .../doxygen/output/html/inherit_graph_6.png | Bin 0 -> 311 bytes .../doxygen/output/html/inherit_graph_7.map | 7 + .../doxygen/output/html/inherit_graph_7.md5 | 1 + .../doxygen/output/html/inherit_graph_7.png | Bin 0 -> 6167 bytes .../doxygen/output/html/inherit_graph_8.map | 3 + .../doxygen/output/html/inherit_graph_8.md5 | 1 + .../doxygen/output/html/inherit_graph_8.png | Bin 0 -> 489 bytes .../xf/doxygen/output/html/inherits.html | 133 + .../output/html/initialevent_8h_source.html | 95 + .../html/interface_2behavior_8h_source.html | 127 + .../xf/doxygen/output/html/jquery.js | 35 + src/simplified/xf/doxygen/output/html/menu.js | 127 + .../xf/doxygen/output/html/menudata.js | 76 + .../xf/doxygen/output/html/modules.html | 82 + .../xf/doxygen/output/html/nav_f.png | Bin 0 -> 153 bytes .../xf/doxygen/output/html/nav_g.png | Bin 0 -> 95 bytes .../xf/doxygen/output/html/nav_h.png | Bin 0 -> 98 bytes .../xf/doxygen/output/html/open.png | Bin 0 -> 123 bytes .../port_2common_2dispatcher_8h_source.html | 140 + ...ort_2common_2timeoutmanager_8h_source.html | 132 + .../port_2idf-qt_2eventqueue_8h_source.html | 127 + .../html/port_2idf-qt_2mutex_8h_source.html | 115 + ...port_2idf-stm32_2eventqueue_8h_source.html | 130 + .../port_2idf-stm32_2mutex_8h_source.html | 112 + .../xf/doxygen/output/html/search/all_0.html | 37 + .../xf/doxygen/output/html/search/all_0.js | 5 + .../xf/doxygen/output/html/search/all_1.html | 37 + .../xf/doxygen/output/html/search/all_1.js | 4 + .../xf/doxygen/output/html/search/all_10.html | 37 + .../xf/doxygen/output/html/search/all_10.js | 11 + .../xf/doxygen/output/html/search/all_11.html | 37 + .../xf/doxygen/output/html/search/all_11.js | 6 + .../xf/doxygen/output/html/search/all_12.html | 37 + .../xf/doxygen/output/html/search/all_12.js | 21 + .../xf/doxygen/output/html/search/all_13.html | 37 + .../xf/doxygen/output/html/search/all_13.js | 4 + .../xf/doxygen/output/html/search/all_2.html | 37 + .../xf/doxygen/output/html/search/all_2.js | 5 + .../xf/doxygen/output/html/search/all_3.html | 37 + .../xf/doxygen/output/html/search/all_3.js | 10 + .../xf/doxygen/output/html/search/all_4.html | 37 + .../xf/doxygen/output/html/search/all_4.js | 13 + .../xf/doxygen/output/html/search/all_5.html | 37 + .../xf/doxygen/output/html/search/all_5.js | 4 + .../xf/doxygen/output/html/search/all_6.html | 37 + .../xf/doxygen/output/html/search/all_6.js | 13 + .../xf/doxygen/output/html/search/all_7.html | 37 + .../xf/doxygen/output/html/search/all_7.js | 13 + .../xf/doxygen/output/html/search/all_8.html | 37 + .../xf/doxygen/output/html/search/all_8.js | 4 + .../xf/doxygen/output/html/search/all_9.html | 37 + .../xf/doxygen/output/html/search/all_9.js | 4 + .../xf/doxygen/output/html/search/all_a.html | 37 + .../xf/doxygen/output/html/search/all_a.js | 5 + .../xf/doxygen/output/html/search/all_b.html | 37 + .../xf/doxygen/output/html/search/all_b.js | 5 + .../xf/doxygen/output/html/search/all_c.html | 37 + .../xf/doxygen/output/html/search/all_c.js | 13 + .../xf/doxygen/output/html/search/all_d.html | 37 + .../xf/doxygen/output/html/search/all_d.js | 4 + .../xf/doxygen/output/html/search/all_e.html | 37 + .../xf/doxygen/output/html/search/all_e.js | 7 + .../xf/doxygen/output/html/search/all_f.html | 37 + .../xf/doxygen/output/html/search/all_f.js | 12 + .../doxygen/output/html/search/classes_0.html | 37 + .../doxygen/output/html/search/classes_0.js | 4 + .../doxygen/output/html/search/classes_1.html | 37 + .../doxygen/output/html/search/classes_1.js | 15 + .../xf/doxygen/output/html/search/close.svg | 31 + .../doxygen/output/html/search/enums_0.html | 37 + .../xf/doxygen/output/html/search/enums_0.js | 4 + .../doxygen/output/html/search/enums_1.html | 37 + .../xf/doxygen/output/html/search/enums_1.js | 4 + .../output/html/search/enumvalues_0.html | 37 + .../output/html/search/enumvalues_0.js | 4 + .../output/html/search/enumvalues_1.html | 37 + .../output/html/search/enumvalues_1.js | 4 + .../output/html/search/enumvalues_2.html | 37 + .../output/html/search/enumvalues_2.js | 4 + .../output/html/search/enumvalues_3.html | 37 + .../output/html/search/enumvalues_3.js | 4 + .../output/html/search/enumvalues_4.html | 37 + .../output/html/search/enumvalues_4.js | 4 + .../output/html/search/enumvalues_5.html | 37 + .../output/html/search/enumvalues_5.js | 4 + .../output/html/search/enumvalues_6.html | 37 + .../output/html/search/enumvalues_6.js | 5 + .../output/html/search/enumvalues_7.html | 37 + .../output/html/search/enumvalues_7.js | 4 + .../output/html/search/functions_0.html | 37 + .../doxygen/output/html/search/functions_0.js | 5 + .../output/html/search/functions_1.html | 37 + .../doxygen/output/html/search/functions_1.js | 4 + .../output/html/search/functions_2.html | 37 + .../doxygen/output/html/search/functions_2.js | 7 + .../output/html/search/functions_3.html | 37 + .../doxygen/output/html/search/functions_3.js | 8 + .../output/html/search/functions_4.html | 37 + .../doxygen/output/html/search/functions_4.js | 4 + .../output/html/search/functions_5.html | 37 + .../doxygen/output/html/search/functions_5.js | 13 + .../output/html/search/functions_6.html | 37 + .../doxygen/output/html/search/functions_6.js | 6 + .../output/html/search/functions_7.html | 37 + .../doxygen/output/html/search/functions_7.js | 4 + .../output/html/search/functions_8.html | 37 + .../doxygen/output/html/search/functions_8.js | 5 + .../output/html/search/functions_9.html | 37 + .../doxygen/output/html/search/functions_9.js | 9 + .../output/html/search/functions_a.html | 37 + .../doxygen/output/html/search/functions_a.js | 5 + .../output/html/search/functions_b.html | 37 + .../doxygen/output/html/search/functions_b.js | 11 + .../output/html/search/functions_c.html | 37 + .../doxygen/output/html/search/functions_c.js | 5 + .../output/html/search/functions_d.html | 37 + .../doxygen/output/html/search/functions_d.js | 5 + .../output/html/search/functions_e.html | 37 + .../doxygen/output/html/search/functions_e.js | 14 + .../output/html/search/functions_f.html | 37 + .../doxygen/output/html/search/functions_f.js | 4 + .../doxygen/output/html/search/groups_0.html | 37 + .../xf/doxygen/output/html/search/groups_0.js | 5 + .../doxygen/output/html/search/groups_1.html | 37 + .../xf/doxygen/output/html/search/groups_1.js | 5 + .../xf/doxygen/output/html/search/mag_sel.svg | 74 + .../doxygen/output/html/search/nomatches.html | 13 + .../doxygen/output/html/search/pages_0.html | 37 + .../xf/doxygen/output/html/search/pages_0.js | 4 + .../xf/doxygen/output/html/search/search.css | 263 + .../xf/doxygen/output/html/search/search.js | 794 + .../doxygen/output/html/search/search_l.png | Bin 0 -> 567 bytes .../doxygen/output/html/search/search_m.png | Bin 0 -> 158 bytes .../doxygen/output/html/search/search_r.png | Bin 0 -> 553 bytes .../doxygen/output/html/search/searchdata.js | 39 + .../output/html/search/typedefs_0.html | 37 + .../doxygen/output/html/search/typedefs_0.js | 4 + .../output/html/search/typedefs_1.html | 37 + .../doxygen/output/html/search/typedefs_1.js | 5 + .../output/html/search/variables_0.html | 37 + .../doxygen/output/html/search/variables_0.js | 4 + .../output/html/search/variables_1.html | 37 + .../doxygen/output/html/search/variables_1.js | 5 + .../output/html/search/variables_2.html | 37 + .../doxygen/output/html/search/variables_2.js | 5 + .../output/html/search/variables_3.html | 37 + .../doxygen/output/html/search/variables_3.js | 7 + .../output/html/search/variables_4.html | 37 + .../doxygen/output/html/search/variables_4.js | 4 + .../output/html/search/variables_5.html | 37 + .../doxygen/output/html/search/variables_5.js | 4 + .../output/html/search/variables_6.html | 37 + .../doxygen/output/html/search/variables_6.js | 6 + .../output/html/search/variables_7.html | 37 + .../doxygen/output/html/search/variables_7.js | 4 + .../output/html/search/variables_8.html | 37 + .../doxygen/output/html/search/variables_8.js | 4 + .../output/html/search/variables_9.html | 37 + .../doxygen/output/html/search/variables_9.js | 4 + .../output/html/search/variables_a.html | 37 + .../doxygen/output/html/search/variables_a.js | 5 + .../xf/doxygen/output/html/splitbar.png | Bin 0 -> 314 bytes .../xf/doxygen/output/html/sync_off.png | Bin 0 -> 853 bytes .../xf/doxygen/output/html/sync_on.png | Bin 0 -> 845 bytes .../xf/doxygen/output/html/tab_a.png | Bin 0 -> 142 bytes .../xf/doxygen/output/html/tab_b.png | Bin 0 -> 169 bytes .../xf/doxygen/output/html/tab_h.png | Bin 0 -> 177 bytes .../xf/doxygen/output/html/tab_s.png | Bin 0 -> 184 bytes .../xf/doxygen/output/html/tabs.css | 1 + .../output/html/timeout_8h_source.html | 125 + .../output/html/xf-config_8h_source.html | 88 + .../xf/doxygen/output/html/xf_8h_source.html | 132 + src/simplified/xf/doxygen/xf.tag | 1172 + src/simplified/xf/include/xf/behavior.h | 91 + src/simplified/xf/include/xf/customevent.h | 50 + .../xf/include/xf/defaulttransition.h | 30 + src/simplified/xf/include/xf/event.h | 75 + src/simplified/xf/include/xf/eventstatus.h | 75 + src/simplified/xf/include/xf/initialevent.h | 25 + .../xf/include/xf/interface/behavior.h | 48 + .../xf/include/xf/interface/dispatcher.h | 88 + .../xf/include/xf/interface/eventqueue.h | 27 + .../xf/include/xf/interface/mutex.h | 56 + .../xf/include/xf/interface/timeoutmanager.h | 90 + src/simplified/xf/include/xf/timeout.h | 60 + src/simplified/xf/include/xf/xf-core.dox | 6 + src/simplified/xf/include/xf/xf.h | 129 + src/simplified/xf/port/README.md | 49 + src/simplified/xf/port/README.pdf | Bin 0 -> 64317 bytes src/simplified/xf/port/common/README.md | 62 + src/simplified/xf/port/common/README.pdf | Bin 0 -> 70347 bytes src/simplified/xf/port/common/dispatcher.cpp | 30 + src/simplified/xf/port/common/dispatcher.h | 60 + src/simplified/xf/port/common/port-common.dox | 6 + .../xf/port/common/timeoutmanager.cpp | 26 + .../xf/port/common/timeoutmanager.h | 51 + .../xf/port/common/xf-port-common.pri | 16 + src/simplified/xf/port/idf-qt/README.md | 30 + src/simplified/xf/port/idf-qt/README.pdf | Bin 0 -> 64718 bytes src/simplified/xf/port/idf-qt/eventqueue.cpp | 55 + src/simplified/xf/port/idf-qt/eventqueue.h | 45 + src/simplified/xf/port/idf-qt/mutex.cpp | 18 + src/simplified/xf/port/idf-qt/mutex.h | 38 + src/simplified/xf/port/idf-qt/port-idf-qt.dox | 6 + .../xf/port/idf-qt/xf-port-idf-qt.pri | 13 + src/simplified/xf/port/idf-qt/xf.cpp | 134 + src/simplified/xf/port/idf-stm32/README.md | 30 + src/simplified/xf/port/idf-stm32/README.pdf | Bin 0 -> 66081 bytes .../xf/port/idf-stm32/c-wrapper-functions.cpp | 38 + .../xf/port/idf-stm32/c-wrapper-functions.h | 44 + .../xf/port/idf-stm32/eventqueue.cpp | 17 + src/simplified/xf/port/idf-stm32/eventqueue.h | 49 + src/simplified/xf/port/idf-stm32/mutex.cpp | 18 + src/simplified/xf/port/idf-stm32/mutex.h | 40 + .../xf/port/idf-stm32/port-idf-stm32.dox | 6 + src/simplified/xf/port/idf-stm32/xf.cpp | 29 + src/simplified/xf/xf-core.pri | 29 + test-bench/common/config/xf-config.h | 54 + test-bench/doxygen/Doxyfile | 2694 +++ test-bench/doxygen/images/state-machine01.png | Bin 0 -> 5493 bytes test-bench/doxygen/images/state-machine02.png | Bin 0 -> 10381 bytes test-bench/doxygen/images/state-machine03.png | Bin 0 -> 9258 bytes .../doxygen/images/state-machine04a.png | Bin 0 -> 9997 bytes .../doxygen/images/state-machine04b.png | Bin 0 -> 9199 bytes .../doxygen/images/state-machine05a.png | Bin 0 -> 4585 bytes .../doxygen/images/state-machine05b.png | Bin 0 -> 4532 bytes test-bench/doxygen/images/test01-output.png | Bin 0 -> 32216 bytes test-bench/doxygen/images/test02-output.png | Bin 0 -> 35296 bytes test-bench/doxygen/images/test03-output.png | Bin 0 -> 31117 bytes test-bench/doxygen/images/test04-output.png | Bin 0 -> 42070 bytes test-bench/doxygen/images/test05-output.png | Bin 0 -> 32324 bytes test-bench/doxygen/output/html/annotated.html | 92 + test-bench/doxygen/output/html/bc_s.png | Bin 0 -> 676 bytes test-bench/doxygen/output/html/bdwn.png | Bin 0 -> 147 bytes .../output/html/class_event_id-members.html | 82 + .../doxygen/output/html/class_event_id.html | 220 + .../html/class_event_id__coll__graph.map | 3 + .../html/class_event_id__coll__graph.md5 | 1 + .../html/class_event_id__coll__graph.png | Bin 0 -> 603 bytes .../html/class_state_machine01-members.html | 91 + .../output/html/class_state_machine01.html | 253 + .../class_state_machine01__coll__graph.map | 4 + .../class_state_machine01__coll__graph.md5 | 1 + .../class_state_machine01__coll__graph.png | Bin 0 -> 3398 bytes .../class_state_machine01__inherit__graph.map | 4 + .../class_state_machine01__inherit__graph.md5 | 1 + .../class_state_machine01__inherit__graph.png | Bin 0 -> 3398 bytes .../html/class_state_machine02-members.html | 92 + .../output/html/class_state_machine02.html | 244 + .../class_state_machine02__coll__graph.map | 4 + .../class_state_machine02__coll__graph.md5 | 1 + .../class_state_machine02__coll__graph.png | Bin 0 -> 3183 bytes .../class_state_machine02__inherit__graph.map | 4 + .../class_state_machine02__inherit__graph.md5 | 1 + .../class_state_machine02__inherit__graph.png | Bin 0 -> 3183 bytes .../html/class_state_machine03-members.html | 88 + .../output/html/class_state_machine03.html | 222 + .../class_state_machine03__coll__graph.map | 4 + .../class_state_machine03__coll__graph.md5 | 1 + .../class_state_machine03__coll__graph.png | Bin 0 -> 2786 bytes .../class_state_machine03__inherit__graph.map | 4 + .../class_state_machine03__inherit__graph.md5 | 1 + .../class_state_machine03__inherit__graph.png | Bin 0 -> 2786 bytes .../html/class_state_machine04a-members.html | 91 + .../output/html/class_state_machine04a.html | 275 + .../class_state_machine04a__coll__graph.map | 4 + .../class_state_machine04a__coll__graph.md5 | 1 + .../class_state_machine04a__coll__graph.png | Bin 0 -> 3421 bytes ...class_state_machine04a__inherit__graph.map | 4 + ...class_state_machine04a__inherit__graph.md5 | 1 + ...class_state_machine04a__inherit__graph.png | Bin 0 -> 3421 bytes .../html/class_state_machine04b-members.html | 90 + .../output/html/class_state_machine04b.html | 231 + .../class_state_machine04b__coll__graph.map | 4 + .../class_state_machine04b__coll__graph.md5 | 1 + .../class_state_machine04b__coll__graph.png | Bin 0 -> 3364 bytes ...class_state_machine04b__inherit__graph.map | 4 + ...class_state_machine04b__inherit__graph.md5 | 1 + ...class_state_machine04b__inherit__graph.png | Bin 0 -> 3364 bytes .../html/class_state_machine05a-members.html | 89 + .../output/html/class_state_machine05a.html | 234 + .../class_state_machine05a__coll__graph.map | 4 + .../class_state_machine05a__coll__graph.md5 | 1 + .../class_state_machine05a__coll__graph.png | Bin 0 -> 2986 bytes ...class_state_machine05a__inherit__graph.map | 4 + ...class_state_machine05a__inherit__graph.md5 | 1 + ...class_state_machine05a__inherit__graph.png | Bin 0 -> 2986 bytes .../html/class_state_machine05b-members.html | 89 + .../output/html/class_state_machine05b.html | 234 + .../class_state_machine05b__coll__graph.map | 4 + .../class_state_machine05b__coll__graph.md5 | 1 + .../class_state_machine05b__coll__graph.png | Bin 0 -> 2981 bytes ...class_state_machine05b__inherit__graph.map | 4 + ...class_state_machine05b__inherit__graph.md5 | 1 + ...class_state_machine05b__inherit__graph.png | Bin 0 -> 2981 bytes .../html/class_test_factory01-members.html | 82 + .../output/html/class_test_factory01.html | 127 + .../class_test_factory01__coll__graph.map | 5 + .../class_test_factory01__coll__graph.md5 | 1 + .../class_test_factory01__coll__graph.png | Bin 0 -> 5730 bytes .../html/class_test_factory02-members.html | 82 + .../output/html/class_test_factory02.html | 125 + .../class_test_factory02__coll__graph.map | 3 + .../class_test_factory02__coll__graph.md5 | 1 + .../class_test_factory02__coll__graph.png | Bin 0 -> 1736 bytes .../html/class_test_factory03-members.html | 81 + .../output/html/class_test_factory03.html | 123 + .../class_test_factory03__coll__graph.map | 5 + .../class_test_factory03__coll__graph.md5 | 1 + .../class_test_factory03__coll__graph.png | Bin 0 -> 4724 bytes .../html/class_test_factory04-members.html | 82 + .../output/html/class_test_factory04.html | 128 + .../class_test_factory04__coll__graph.map | 6 + .../class_test_factory04__coll__graph.md5 | 1 + .../class_test_factory04__coll__graph.png | Bin 0 -> 10549 bytes .../html/class_test_factory05-members.html | 84 + .../output/html/class_test_factory05.html | 139 + .../class_test_factory05__coll__graph.map | 6 + .../class_test_factory05__coll__graph.md5 | 1 + .../class_test_factory05__coll__graph.png | Bin 0 -> 10532 bytes test-bench/doxygen/output/html/classes.html | 86 + .../output/html/classev_restart-members.html | 83 + .../doxygen/output/html/classev_restart.html | 106 + .../html/classev_restart__coll__graph.map | 4 + .../html/classev_restart__coll__graph.md5 | 1 + .../html/classev_restart__coll__graph.png | Bin 0 -> 3855 bytes .../html/classev_restart__inherit__graph.map | 4 + .../html/classev_restart__inherit__graph.md5 | 1 + .../html/classev_restart__inherit__graph.png | Bin 0 -> 3855 bytes test-bench/doxygen/output/html/closed.png | Bin 0 -> 132 bytes .../dir_01e7b6ae91178a7c997c1c4436010e50.html | 78 + .../dir_07e57fa13dda5be206605960c5ff5ddc.html | 82 + .../dir_0c5256322a5840c1ba9cae6fcb43a359.html | 82 + .../dir_0c7b75c3cc30c0f120d0cb57a4916aa4.html | 82 + .../dir_0d6602adb30e779fae853ef4c55ad36c.html | 82 + .../dir_114381abbc0b4fdad67f5e28caf1dae2.html | 82 + .../dir_13bf8d714d14c32ee50a8846264d07f3.html | 86 + .../dir_165d86860ac47e817d278522cdfae0c4.html | 86 + .../dir_1d1c85343392ece9fcb5300d3e95c938.html | 82 + .../dir_1ecd39dbffd3739eb999f6fa15fc54cc.html | 78 + .../dir_27937d49cea61ec6a4c9f0d214006e7b.html | 78 + .../dir_2ccd07aab449b5a1f4441d25a30c4d48.html | 78 + .../dir_2f6d4c8555312b32c8876fcdf4145bf5.html | 82 + .../dir_3da1ed626ddca3e90f2f963fcb93d4ed.html | 82 + .../dir_3e0d2c868be6a3e5150a628fd2a00a9b.html | 86 + .../dir_4462b8b08d57a02b53d3d2c11bb70c59.html | 78 + .../dir_479e72fe9886e058476b6af5824bbd75.html | 82 + .../dir_5480240ac22aaf620a84d435fa96e6c8.html | 82 + .../dir_587df4dd05a2fa082596f4646329b4cb.html | 82 + .../dir_59a99d0ce0aa22d058591419e02d9190.html | 78 + .../dir_6e75a17059e2e7fdde7c9289c2ed92a7.html | 82 + .../dir_70e352ea8918c484a0738da18479b881.html | 78 + .../dir_7654115db021302968cf4533bab8bbfa.html | 78 + .../dir_7c7aec2e09033b4e32d2f5094befacd7.html | 86 + .../dir_7fec92c331b140b3870d22bea1284287.html | 78 + .../dir_8436da1b64bf70fd78ef43ec1f2a7c42.html | 78 + .../dir_86c421a244c79360fa8ff23dd1553824.html | 78 + .../dir_8aaaee2672d781899df21a5b30afe570.html | 78 + .../dir_92336582816fba6aa35c72434d1ab044.html | 82 + .../dir_a5f20161a8237470793879428ba91a0d.html | 78 + .../dir_bbdd353e8511b0a2067f6a1bb2218c8f.html | 78 + .../dir_bdd9a5d540de89e9fe90efdfc6973a4f.html | 82 + .../dir_c70a9dcd52a65ba068d21bc7d85e9b81.html | 78 + .../dir_d035a3ca03f1bae10cfebb17b24441a0.html | 82 + .../dir_d5777063fa38047b3eb00e2ee1038fc4.html | 86 + .../dir_df352c1893aaa592e0eb211b276915f1.html | 78 + .../dir_e1d09ab9c7e256f53962f9c3932ceca2.html | 78 + .../dir_e56bc661a253ac144891e54631a33d95.html | 82 + .../dir_ef5ec6f15bc519b773c1cd6cf32bc83d.html | 78 + .../dir_f10f7f754c84fa148fb6ed0571efeeec.html | 78 + test-bench/doxygen/output/html/doc.png | Bin 0 -> 746 bytes test-bench/doxygen/output/html/doxygen.css | 1827 ++ test-bench/doxygen/output/html/doxygen.svg | 26 + test-bench/doxygen/output/html/dynsections.js | 121 + test-bench/doxygen/output/html/files.html | 162 + .../doxygen/output/html/folderclosed.png | Bin 0 -> 616 bytes test-bench/doxygen/output/html/folderopen.png | Bin 0 -> 597 bytes test-bench/doxygen/output/html/functions.html | 170 + .../doxygen/output/html/functions_enum.html | 76 + .../doxygen/output/html/functions_eval.html | 102 + .../doxygen/output/html/functions_func.html | 115 + .../doxygen/output/html/functions_vars.html | 86 + .../doxygen/output/html/graph_legend.html | 134 + .../doxygen/output/html/graph_legend.md5 | 1 + .../doxygen/output/html/graph_legend.png | Bin 0 -> 12720 bytes .../doxygen/output/html/group__test01.html | 98 + .../doxygen/output/html/group__test02.html | 95 + .../doxygen/output/html/group__test03.html | 94 + .../doxygen/output/html/group__test04.html | 96 + .../doxygen/output/html/group__test05.html | 97 + .../output/html/group__test__bench.html | 78 + test-bench/doxygen/output/html/hierarchy.html | 98 + test-bench/doxygen/output/html/index.html | 93 + .../doxygen/output/html/inherit_graph_0.map | 3 + .../doxygen/output/html/inherit_graph_0.md5 | 1 + .../doxygen/output/html/inherit_graph_0.png | Bin 0 -> 394 bytes .../doxygen/output/html/inherit_graph_1.map | 4 + .../doxygen/output/html/inherit_graph_1.md5 | 1 + .../doxygen/output/html/inherit_graph_1.png | Bin 0 -> 1122 bytes .../doxygen/output/html/inherit_graph_2.map | 10 + .../doxygen/output/html/inherit_graph_2.md5 | 1 + .../doxygen/output/html/inherit_graph_2.png | Bin 0 -> 13592 bytes .../doxygen/output/html/inherit_graph_3.map | 3 + .../doxygen/output/html/inherit_graph_3.md5 | 1 + .../doxygen/output/html/inherit_graph_3.png | Bin 0 -> 470 bytes .../doxygen/output/html/inherit_graph_4.map | 3 + .../doxygen/output/html/inherit_graph_4.md5 | 1 + .../doxygen/output/html/inherit_graph_4.png | Bin 0 -> 480 bytes .../doxygen/output/html/inherit_graph_5.map | 3 + .../doxygen/output/html/inherit_graph_5.md5 | 1 + .../doxygen/output/html/inherit_graph_5.png | Bin 0 -> 474 bytes .../doxygen/output/html/inherit_graph_6.map | 3 + .../doxygen/output/html/inherit_graph_6.md5 | 1 + .../doxygen/output/html/inherit_graph_6.png | Bin 0 -> 474 bytes .../doxygen/output/html/inherit_graph_7.map | 3 + .../doxygen/output/html/inherit_graph_7.md5 | 1 + .../doxygen/output/html/inherit_graph_7.png | Bin 0 -> 474 bytes test-bench/doxygen/output/html/inherits.html | 126 + test-bench/doxygen/output/html/jquery.js | 35 + test-bench/doxygen/output/html/menu.js | 127 + test-bench/doxygen/output/html/menudata.js | 61 + test-bench/doxygen/output/html/modules.html | 84 + test-bench/doxygen/output/html/nav_f.png | Bin 0 -> 153 bytes test-bench/doxygen/output/html/nav_g.png | Bin 0 -> 95 bytes test-bench/doxygen/output/html/nav_h.png | Bin 0 -> 98 bytes test-bench/doxygen/output/html/open.png | Bin 0 -> 123 bytes .../doxygen/output/html/search/all_0.html | 37 + .../doxygen/output/html/search/all_0.js | 4 + .../doxygen/output/html/search/all_1.html | 37 + .../doxygen/output/html/search/all_1.js | 4 + .../doxygen/output/html/search/all_2.html | 37 + .../doxygen/output/html/search/all_2.js | 5 + .../doxygen/output/html/search/all_3.html | 37 + .../doxygen/output/html/search/all_3.js | 8 + .../doxygen/output/html/search/all_4.html | 37 + .../doxygen/output/html/search/all_4.js | 6 + .../doxygen/output/html/search/all_5.html | 37 + .../doxygen/output/html/search/all_5.js | 8 + .../doxygen/output/html/search/all_6.html | 37 + .../doxygen/output/html/search/all_6.js | 7 + .../doxygen/output/html/search/all_7.html | 37 + .../doxygen/output/html/search/all_7.js | 4 + .../doxygen/output/html/search/all_8.html | 37 + .../doxygen/output/html/search/all_8.js | 4 + .../doxygen/output/html/search/all_9.html | 37 + .../doxygen/output/html/search/all_9.js | 4 + .../doxygen/output/html/search/all_a.html | 37 + .../doxygen/output/html/search/all_a.js | 7 + .../doxygen/output/html/search/all_b.html | 37 + .../doxygen/output/html/search/all_b.js | 4 + .../doxygen/output/html/search/all_c.html | 37 + .../doxygen/output/html/search/all_c.js | 22 + .../doxygen/output/html/search/all_d.html | 37 + .../doxygen/output/html/search/all_d.js | 19 + .../doxygen/output/html/search/all_e.html | 37 + .../doxygen/output/html/search/all_e.js | 5 + .../doxygen/output/html/search/classes_0.html | 37 + .../doxygen/output/html/search/classes_0.js | 5 + .../doxygen/output/html/search/classes_1.html | 37 + .../doxygen/output/html/search/classes_1.js | 10 + .../doxygen/output/html/search/classes_2.html | 37 + .../doxygen/output/html/search/classes_2.js | 9 + .../doxygen/output/html/search/close.svg | 31 + .../doxygen/output/html/search/enums_0.html | 37 + .../doxygen/output/html/search/enums_0.js | 6 + .../output/html/search/enumvalues_0.html | 37 + .../output/html/search/enumvalues_0.js | 4 + .../output/html/search/enumvalues_1.html | 37 + .../output/html/search/enumvalues_1.js | 13 + .../output/html/search/enumvalues_2.html | 37 + .../output/html/search/enumvalues_2.js | 6 + .../output/html/search/enumvalues_3.html | 37 + .../output/html/search/enumvalues_3.js | 4 + .../output/html/search/functions_0.html | 37 + .../doxygen/output/html/search/functions_0.js | 4 + .../output/html/search/functions_1.html | 37 + .../doxygen/output/html/search/functions_1.js | 8 + .../output/html/search/functions_2.html | 37 + .../doxygen/output/html/search/functions_2.js | 6 + .../output/html/search/functions_3.html | 37 + .../doxygen/output/html/search/functions_3.js | 4 + .../output/html/search/functions_4.html | 37 + .../doxygen/output/html/search/functions_4.js | 4 + .../output/html/search/functions_5.html | 37 + .../doxygen/output/html/search/functions_5.js | 4 + .../output/html/search/functions_6.html | 37 + .../doxygen/output/html/search/functions_6.js | 8 + .../output/html/search/functions_7.html | 37 + .../doxygen/output/html/search/functions_7.js | 8 + .../output/html/search/functions_8.html | 37 + .../doxygen/output/html/search/functions_8.js | 4 + .../doxygen/output/html/search/groups_0.html | 37 + .../doxygen/output/html/search/groups_0.js | 6 + .../doxygen/output/html/search/groups_1.html | 37 + .../doxygen/output/html/search/groups_1.js | 4 + .../doxygen/output/html/search/groups_2.html | 37 + .../doxygen/output/html/search/groups_2.js | 4 + .../doxygen/output/html/search/groups_3.html | 37 + .../doxygen/output/html/search/groups_3.js | 4 + .../doxygen/output/html/search/mag_sel.svg | 74 + .../doxygen/output/html/search/nomatches.html | 13 + .../doxygen/output/html/search/pages_0.html | 37 + .../doxygen/output/html/search/pages_0.js | 4 + .../doxygen/output/html/search/search.css | 263 + .../doxygen/output/html/search/search.js | 794 + .../doxygen/output/html/search/search_l.png | Bin 0 -> 567 bytes .../doxygen/output/html/search/search_m.png | Bin 0 -> 158 bytes .../doxygen/output/html/search/search_r.png | Bin 0 -> 553 bytes .../doxygen/output/html/search/searchdata.js | 36 + .../output/html/search/variables_0.html | 37 + .../doxygen/output/html/search/variables_0.js | 4 + .../output/html/search/variables_1.html | 37 + .../doxygen/output/html/search/variables_1.js | 5 + .../output/html/search/variables_2.html | 37 + .../doxygen/output/html/search/variables_2.js | 4 + .../output/html/search/variables_3.html | 37 + .../doxygen/output/html/search/variables_3.js | 4 + .../output/html/search/variables_4.html | 37 + .../doxygen/output/html/search/variables_4.js | 4 + .../output/html/search/variables_5.html | 37 + .../doxygen/output/html/search/variables_5.js | 4 + .../output/html/search/variables_6.html | 37 + .../doxygen/output/html/search/variables_6.js | 9 + test-bench/doxygen/output/html/splitbar.png | Bin 0 -> 314 bytes .../doxygen/output/html/state-machine01.png | Bin 0 -> 5493 bytes .../doxygen/output/html/state-machine02.png | Bin 0 -> 10381 bytes .../doxygen/output/html/state-machine03.png | Bin 0 -> 9258 bytes .../doxygen/output/html/state-machine04a.png | Bin 0 -> 9997 bytes .../doxygen/output/html/state-machine04b.png | Bin 0 -> 9199 bytes .../doxygen/output/html/state-machine05a.png | Bin 0 -> 4585 bytes .../doxygen/output/html/state-machine05b.png | Bin 0 -> 4532 bytes .../output/html/statemachine01_8h_source.html | 132 + .../output/html/statemachine02_8h_source.html | 131 + .../output/html/statemachine03_8h_source.html | 121 + .../html/statemachine04a_8h_source.html | 130 + .../html/statemachine04b_8h_source.html | 126 + .../html/statemachine05a_8h_source.html | 126 + .../html/statemachine05b_8h_source.html | 126 + test-bench/doxygen/output/html/sync_off.png | Bin 0 -> 853 bytes test-bench/doxygen/output/html/sync_on.png | Bin 0 -> 845 bytes test-bench/doxygen/output/html/tab_a.png | Bin 0 -> 142 bytes test-bench/doxygen/output/html/tab_b.png | Bin 0 -> 169 bytes test-bench/doxygen/output/html/tab_h.png | Bin 0 -> 177 bytes test-bench/doxygen/output/html/tab_s.png | Bin 0 -> 184 bytes test-bench/doxygen/output/html/tabs.css | 1 + .../doxygen/output/html/test01-output.png | Bin 0 -> 32216 bytes .../doxygen/output/html/test02-output.png | Bin 0 -> 35296 bytes .../doxygen/output/html/test03-output.png | Bin 0 -> 31117 bytes .../doxygen/output/html/test04-output.png | Bin 0 -> 42070 bytes .../doxygen/output/html/test05-output.png | Bin 0 -> 32324 bytes ...1-idf_2config_2trace-config_8h_source.html | 96 + ...t1-idf_2config_2uart-config_8h_source.html | 84 + ...idf_2config_2xf-port-config_8h_source.html | 85 + ...1-idf_2config_2trace-config_8h_source.html | 89 + ...idf_2config_2xf-port-config_8h_source.html | 85 + ...2-idf_2config_2trace-config_8h_source.html | 96 + ...t2-idf_2config_2uart-config_8h_source.html | 84 + ...idf_2config_2xf-port-config_8h_source.html | 85 + ...2-idf_2config_2trace-config_8h_source.html | 89 + ...idf_2config_2xf-port-config_8h_source.html | 87 + ...3-idf_2config_2trace-config_8h_source.html | 96 + ...t3-idf_2config_2uart-config_8h_source.html | 84 + ...idf_2config_2xf-port-config_8h_source.html | 85 + ...3-idf_2config_2trace-config_8h_source.html | 89 + ...idf_2config_2xf-port-config_8h_source.html | 87 + ...est3_2src_2events_2eventids_8h_source.html | 96 + ...st3_2src_2events_2evrestart_8h_source.html | 95 + ...4-idf_2config_2trace-config_8h_source.html | 96 + ...t4-idf_2config_2uart-config_8h_source.html | 84 + ...idf_2config_2xf-port-config_8h_source.html | 85 + ...4-idf_2config_2trace-config_8h_source.html | 89 + ...idf_2config_2xf-port-config_8h_source.html | 87 + ...est4_2src_2events_2eventids_8h_source.html | 96 + ...st4_2src_2events_2evrestart_8h_source.html | 93 + ...5-idf_2config_2trace-config_8h_source.html | 96 + ...t5-idf_2config_2uart-config_8h_source.html | 84 + ...idf_2config_2xf-port-config_8h_source.html | 85 + ...5-idf_2config_2trace-config_8h_source.html | 89 + ...idf_2config_2xf-port-config_8h_source.html | 87 + ...est5_2src_2events_2eventids_8h_source.html | 96 + ...st5_2src_2events_2evrestart_8h_source.html | 93 + .../output/html/testfactory01_8h_source.html | 124 + .../output/html/testfactory02_8h_source.html | 124 + .../output/html/testfactory03_8h_source.html | 123 + .../output/html/testfactory04_8h_source.html | 127 + .../output/html/testfactory05_8h_source.html | 131 + .../output/html/xf-config_8h_source.html | 132 + test-bench/test-bench.dox | 102 + .../.qmake.stash | 23 + .../clangd/index/FILE.h.3E2187E08D11E118.idx | Bin 0 -> 292 bytes .../QCoreApplication.CB150BAD8FA2A80B.idx | Bin 0 -> 228 bytes .../index/QDeadlineTimer.56FB999D4DA15614.idx | Bin 0 -> 224 bytes .../clangd/index/QDebug.B7169DF43D86707A.idx | Bin 0 -> 208 bytes .../clangd/index/QMutex.C4F3B6562317065E.idx | Bin 0 -> 208 bytes .../index/QMutexLocker.BF5B711248B4DAB3.idx | Bin 0 -> 214 bytes .../clangd/index/QQueue.430BE93C00BFAA49.idx | Bin 0 -> 208 bytes .../clangd/index/QThread.42539ED810348D10.idx | Bin 0 -> 210 bytes .../clangd/index/QTime.3C7A731ECEB3F8CE.idx | Bin 0 -> 210 bytes .../index/QWaitCondition.30412FE5C62C84FC.idx | Bin 0 -> 224 bytes .../index/QtGlobal.038F2784F39D3F53.idx | Bin 0 -> 210 bytes .../index/__FILE.h.1F308548AFF4D3EF.idx | Bin 0 -> 162 bytes .../index/__fpos64_t.h.17D15E2B207C2A61.idx | Bin 0 -> 302 bytes .../index/__fpos_t.h.963F544188B39C92.idx | Bin 0 -> 300 bytes .../index/__locale_t.h.EFD2EEF88C7BC9DC.idx | Bin 0 -> 166 bytes .../index/__mbstate_t.h.93B945FF5E55D571.idx | Bin 0 -> 168 bytes .../index/__sigset_t.h.B590AC3A1F93FF72.idx | Bin 0 -> 202 bytes ..._stddef_max_align_t.h.8F5BE66DE55CC5FD.idx | Bin 0 -> 338 bytes .../index/algorithm.E9A43F84DD41DB78.idx | Bin 0 -> 436 bytes .../index/algorithmfwd.h.20ED5CA0AC688A3C.idx | Bin 0 -> 17090 bytes .../clangd/index/align.h.39AE23050B3DB93E.idx | Bin 0 -> 1488 bytes .../aligned_buffer.h.7189E6BB01C6E3A5.idx | Bin 0 -> 332 bytes .../index/alloc_traits.h.9E8A5CBD997BBB89.idx | Bin 0 -> 708 bytes .../index/alloc_traits.h.B37F0213D6391980.idx | Bin 0 -> 8788 bytes .../index/alloca.h.B3C3404035C15EA6.idx | Bin 0 -> 608 bytes .../allocated_ptr.h.9E55EAC1E221125A.idx | Bin 0 -> 1274 bytes .../index/allocator.h.394340D4AFD0BB3B.idx | Bin 0 -> 5832 bytes .../clangd/index/array.D8DE39B4581540F3.idx | Bin 0 -> 11202 bytes .../index/assert.h.F44EF353D67C7E11.idx | Bin 0 -> 490 bytes .../index/assertions.h.B330CAAEDB3A66ED.idx | Bin 0 -> 374 bytes .../clangd/index/atomic.C96209A0696380EA.idx | Bin 0 -> 37530 bytes .../index/atomic_base.h.F118387B313E4F7F.idx | Bin 0 -> 8938 bytes .../index/atomic_futex.h.B4534E59D51B86E0.idx | Bin 0 -> 3112 bytes ...ic_lockfree_defines.h.5A61A192449D626F.idx | Bin 0 -> 398 bytes ...atomic_wide_counter.h.3E10DD82C6CABCC3.idx | Bin 0 -> 170 bytes .../index/atomic_word.h.EB55DB140AD857EC.idx | Bin 0 -> 218 bytes .../index/atomicity.h.43921E32F71C0D03.idx | Bin 0 -> 640 bytes .../index/auto_ptr.h.6C881C0DF274EBDF.idx | Bin 0 -> 6126 bytes .../index/basic_string.h.4C4ECAF92DDBC2FB.idx | Bin 0 -> 68312 bytes .../basic_string.tcc.79FB62151E4CF456.idx | Bin 0 -> 41014 bytes .../index/behavior.cpp.E2ED0F85324DC8A4.idx | Bin 0 -> 2300 bytes .../index/behavior.h.9B22DBD8743C088A.idx | Bin 0 -> 1742 bytes .../index/behavior.h.E2D0C97E5821CCE2.idx | Bin 0 -> 2854 bytes .../bessel_function.tcc.363522A49CE606F6.idx | Bin 0 -> 16028 bytes .../beta_function.tcc.B17631E90F5F428F.idx | Bin 0 -> 1706 bytes .../index/binders.h.1DA6EDB73FBF3FD7.idx | Bin 0 -> 3670 bytes .../clangd/index/bit.80FBF70B2C290900.idx | Bin 0 -> 12502 bytes .../index/board.cpp.022032CFB2D4AA39.idx | Bin 0 -> 2154 bytes .../clangd/index/board.h.3AF0FAA5D7EB1012.idx | Bin 0 -> 2222 bytes .../index/byteswap.h.94242F347BA9D8AE.idx | Bin 0 -> 448 bytes .../index/c++allocator.h.9E1F9886B0EDB4C5.idx | Bin 0 -> 240 bytes .../index/c++config.h.E55AC3F6C0B0EAE8.idx | Bin 0 -> 9548 bytes .../index/c++locale.h.B6ED9DCB1BA4491F.idx | Bin 0 -> 572 bytes .../clangd/index/cassert.C8527DF9B4896FFB.idx | Bin 0 -> 242 bytes .../clangd/index/cctype.4F156C127E35B60F.idx | Bin 0 -> 1520 bytes .../clangd/index/cdefs.h.FC477E759ACAD3AA.idx | Bin 0 -> 3310 bytes .../clangd/index/cerrno.7575ACCDA80AA795.idx | Bin 0 -> 302 bytes .../index/char_traits.h.94769F13C7BDFB0D.idx | Bin 0 -> 11402 bytes .../index/charconv.h.8E6A8A91F6A3D636.idx | Bin 0 -> 3128 bytes .../clangd/index/chrono.E17ABF0F77A5FD39.idx | Bin 0 -> 26918 bytes .../clangd/index/clocale.0E3FB845561D8965.idx | Bin 0 -> 548 bytes .../index/clock_t.h.7C390066B7BA63AD.idx | Bin 0 -> 312 bytes .../index/clockid_t.h.7492A2D657E428F9.idx | Bin 0 -> 340 bytes .../clangd/index/cmath.AF48DC9BE999311F.idx | Bin 0 -> 33596 bytes .../concept_check.h.758C509CD2850D66.idx | Bin 0 -> 376 bytes .../index/concurrence.h.F0312976A7C56E2A.idx | Bin 0 -> 1270 bytes .../condition_variable.DB8965592B180B31.idx | Bin 0 -> 12362 bytes ...okie_io_functions_t.h.71B144EB69678E45.idx | Bin 0 -> 1716 bytes .../cpp_type_traits.h.C3A811FFDE72BE58.idx | Bin 0 -> 532 bytes .../index/cpu-set.h.CE4FA57DADE65D4C.idx | Bin 0 -> 892 bytes .../index/cpu_defines.h.03EE885A6EB65E67.idx | Bin 0 -> 172 bytes .../clangd/index/cstddef.337D34E624285F88.idx | Bin 0 -> 2798 bytes .../clangd/index/cstdint.131423F6DD978BF6.idx | Bin 0 -> 2926 bytes .../clangd/index/cstdio.4027945FEE8890E9.idx | Bin 0 -> 4604 bytes .../clangd/index/cstdlib.3F00BA73B29BCEDF.idx | Bin 0 -> 4716 bytes .../clangd/index/cstring.2EBDFF9E335B5760.idx | Bin 0 -> 2392 bytes .../clangd/index/ctime.B529F9448D24C25D.idx | Bin 0 -> 1512 bytes .../clangd/index/ctype.h.8C666B63C116FFB8.idx | Bin 0 -> 4532 bytes .../customevent.cpp.16E87A2DC02A8ADC.idx | Bin 0 -> 2092 bytes .../index/customevent.h.E72604B8D94D056E.idx | Bin 0 -> 3020 bytes .../clangd/index/cwchar.527D4E087DA71F76.idx | Bin 0 -> 7298 bytes .../cxxabi_forced.h.F9C7F7987E4E3C70.idx | Bin 0 -> 158 bytes ...xabi_init_exception.h.430CE6EB8B5EC125.idx | Bin 0 -> 520 bytes .../clangd/index/debug.h.6B0FA042FC4FEEFD.idx | Bin 0 -> 694 bytes ...defaulttransition.cpp.214B07986A3AC493.idx | Bin 0 -> 2110 bytes .../defaulttransition.h.2067E42ED6FDEE4C.idx | Bin 0 -> 802 bytes .../index/dispatcher.cpp.47E03E37E40BA450.idx | Bin 0 -> 3054 bytes .../index/dispatcher.h.667C0736624754AE.idx | Bin 0 -> 1950 bytes .../index/dispatcher.h.6D4A6602C2C24AC6.idx | Bin 0 -> 3734 bytes .../ell_integral.tcc.BB2A031CDFD4DEFA.idx | Bin 0 -> 16768 bytes ...ble_special_members.h.5B070FC951BB7AE4.idx | Bin 0 -> 318 bytes .../index/endian.h.631A0D66820E991A.idx | Bin 0 -> 376 bytes .../index/endian.h.86AC4579400E1F3C.idx | Bin 0 -> 826 bytes .../index/endianness.h.35701F8E0AA769D8.idx | Bin 0 -> 206 bytes .../index/erase_if.h.B291FB0AC45EF1E5.idx | Bin 0 -> 1200 bytes .../index/errno-base.h.6103700F2A961E57.idx | Bin 0 -> 932 bytes .../clangd/index/errno.h.3B388C5618606E4B.idx | Bin 0 -> 794 bytes .../clangd/index/errno.h.3C49467575AFE596.idx | Bin 0 -> 182 bytes .../clangd/index/errno.h.976E2F7993D5837D.idx | Bin 0 -> 2478 bytes .../clangd/index/errno.h.E95D16D80A970771.idx | Bin 0 -> 362 bytes .../clangd/index/errno.h.ED5CC3F31B3B565F.idx | Bin 0 -> 176 bytes .../error_constants.h.1CFB57CD7FF2981D.idx | Bin 0 -> 8514 bytes .../index/error_t.h.CB1EA22453434AEE.idx | Bin 0 -> 228 bytes .../clangd/index/event.h.026E8F470CEE068B.idx | Bin 0 -> 2226 bytes .../index/eventqueue.cpp.C8E7FC85B928787B.idx | Bin 0 -> 3484 bytes .../index/eventqueue.h.C48F781F49DEB5D1.idx | Bin 0 -> 3698 bytes .../index/eventqueue.h.C64924D087EF8934.idx | Bin 0 -> 1050 bytes .../index/eventstatus.h.6DC8E7F9656E1BD3.idx | Bin 0 -> 1626 bytes .../index/exception.B5CDC8236E22180B.idx | Bin 0 -> 3272 bytes .../index/exception.h.4A781029051CAFC8.idx | Bin 0 -> 1840 bytes .../exception_defines.h.2CB2BDBF392F88BB.idx | Bin 0 -> 230 bytes .../exception_ptr.h.698CCE38E3D2C07B.idx | Bin 0 -> 1952 bytes .../execution_defs.h.E29E8739239889C9.idx | Bin 0 -> 840 bytes .../exp_integral.tcc.139A83B6E72E10F0.idx | Bin 0 -> 8308 bytes .../features-time64.h.C0452545283792D6.idx | Bin 0 -> 250 bytes .../index/features.h.839A4F3F7C9A4375.idx | Bin 0 -> 2602 bytes .../floatn-common.h.711B93EF2CFF9AAF.idx | Bin 0 -> 1778 bytes .../index/floatn.h.B07A09C8C93FD359.idx | Bin 0 -> 468 bytes .../flt-eval-method.h.1762CEF65E1C8B85.idx | Bin 0 -> 188 bytes .../index/fp-fast.h.91BD97E5074DD210.idx | Bin 0 -> 180 bytes .../index/fp-logb.h.54140651B2DCB461.idx | Bin 0 -> 204 bytes .../index/functexcept.h.504CD7CE20367026.idx | Bin 0 -> 372 bytes .../index/functional.027B3EC528A2F24E.idx | Bin 0 -> 42408 bytes .../functional_hash.h.8E61F0A4AD90C580.idx | Bin 0 -> 5532 bytes .../clangd/index/future.B3A82DFE944536AB.idx | Bin 0 -> 24502 bytes .../index/gamma.tcc.9DF5E781344B25C4.idx | Bin 0 -> 6946 bytes ...glue_algorithm_defs.h.C45A40F9A8A5C494.idx | Bin 0 -> 22460 bytes .../glue_memory_defs.h.A7A93309FD11D428.idx | Bin 0 -> 2502 bytes .../glue_numeric_defs.h.08103F6A784432C4.idx | Bin 0 -> 5972 bytes .../index/gthr-default.h.D8DA734A914DDEB6.idx | Bin 0 -> 2126 bytes .../clangd/index/gthr.h.77B10DEC63904FFC.idx | Bin 0 -> 270 bytes .../index/hash_bytes.h.8ECECB40777C1A44.idx | Bin 0 -> 374 bytes .../index/hashtable.h.7741C2498E025FCC.idx | Bin 0 -> 33700 bytes .../hashtable_policy.h.D3C8252DD5324894.idx | Bin 0 -> 16590 bytes .../hypergeometric.tcc.7D7CA0FC930432DB.idx | Bin 0 -> 21484 bytes .../initialevent.cpp.F094CCC905A3F0E2.idx | Bin 0 -> 2096 bytes .../index/initialevent.h.8354B0C4818EF288.idx | Bin 0 -> 2536 bytes .../initializer_list.E61E86F3E9F24619.idx | Bin 0 -> 1840 bytes .../index/invoke.h.DF257F4E308AA93B.idx | Bin 0 -> 822 bytes .../index/ios_base.h.D421E5C4BB99E7AA.idx | Bin 0 -> 16362 bytes .../clangd/index/iosfwd.618FEA8F4A176CBD.idx | Bin 0 -> 5278 bytes .../index/iscanonical.h.1DF86AC8EA449C5B.idx | Bin 0 -> 578 bytes .../index/iterator.05C0EE6632710DAA.idx | Bin 0 -> 708 bytes ...edcontroller-config.h.2EE80FD94EF96D2A.idx | Bin 0 -> 202 bytes .../ledcontroller.cpp.7816286C6D470FCA.idx | Bin 0 -> 3708 bytes .../ledcontroller.h.970D38625B4E96A1.idx | Bin 0 -> 3334 bytes ...legendre_function.tcc.DCD30A693C7DAE25.idx | Bin 0 -> 2918 bytes .../libc-header-start.h.3C576D2EC44F3D51.idx | Bin 0 -> 518 bytes ...ibm-simd-decl-stubs.h.4E46FE7F7407C98C.idx | Bin 0 -> 6772 bytes .../clangd/index/limits.4C150390A8477EBA.idx | Bin 0 -> 58282 bytes .../index/limits.h.232C8828345DA25C.idx | Bin 0 -> 812 bytes .../index/limits.h.69A10F8A386658B6.idx | Bin 0 -> 438 bytes .../index/limits.h.DCE8C15AD9D662BA.idx | Bin 0 -> 1018 bytes .../clangd/index/list.FDA672B4B1AC51F7.idx | Bin 0 -> 686 bytes .../index/list.tcc.C948B86A36ACB69C.idx | Bin 0 -> 30468 bytes .../index/local_lim.h.6B4611C506FF1184.idx | Bin 0 -> 688 bytes .../index/locale.h.5F1EA2E91D0CD92F.idx | Bin 0 -> 4812 bytes .../index/locale.h.DC6A3C8413AF44F6.idx | Bin 0 -> 478 bytes .../locale_classes.h.0037C8A4EBF36E2B.idx | Bin 0 -> 8358 bytes .../locale_classes.tcc.DC599615D616917E.idx | Bin 0 -> 7372 bytes .../index/locale_t.h.35126649C9580C9E.idx | Bin 0 -> 302 bytes .../index/localefwd.h.CB2F7180B0799E22.idx | Bin 0 -> 5180 bytes .../index/long-double.h.8E4A01ABF34B6FCF.idx | Bin 0 -> 162 bytes .../index/main.cpp.95974BB11D546F6F.idx | Bin 0 -> 2382 bytes .../clangd/index/map.65EA531CB9793EA9.idx | Bin 0 -> 904 bytes .../index/math-vector.h.26BD74300CD67C77.idx | Bin 0 -> 238 bytes .../clangd/index/math.h.01C27C5330238AC3.idx | Bin 0 -> 10736 bytes ...ls-helper-functions.h.451E844800DAE198.idx | Bin 0 -> 380 bytes .../mathcalls-narrow.h.6E4F1E49E4D46D1C.idx | Bin 0 -> 4756 bytes .../index/mathcalls.h.6E280093246D7E22.idx | Bin 0 -> 63038 bytes .../index/mbstate_t.h.3528BDA0AC14581F.idx | Bin 0 -> 306 bytes .../clangd/index/memory.D8CFFD50CBC6CA29.idx | Bin 0 -> 2576 bytes .../index/memoryfwd.h.AFF80986FB2F220A.idx | Bin 0 -> 408 bytes ...ified_bessel_func.tcc.5A390239368A3971.idx | Bin 0 -> 8266 bytes .../clangd/index/move.h.8E894E7C8E2C68A1.idx | Bin 0 -> 3726 bytes .../clangd/index/mutex.4C8B9890DFA5E408.idx | Bin 0 -> 11282 bytes .../index/mutex.cpp.3ABFE1CF65E94BE1.idx | Bin 0 -> 2484 bytes .../clangd/index/mutex.h.4169A01CEAA7702C.idx | Bin 0 -> 2998 bytes .../clangd/index/mutex.h.9AFE260CB14B1AC0.idx | Bin 0 -> 1056 bytes .../nested_exception.h.31FE92010345A70D.idx | Bin 0 -> 1940 bytes .../clangd/index/new.CD6F59707B4E1CB0.idx | Bin 0 -> 6628 bytes .../new_allocator.h.F6CE1C98E947F018.idx | Bin 0 -> 1336 bytes .../index/node_handle.h.004789CC082EB672.idx | Bin 0 -> 6258 bytes .../clangd/index/numeric.705D60D711E06D25.idx | Bin 0 -> 32524 bytes .../numeric_traits.h.815200D9C505BB49.idx | Bin 0 -> 526 bytes .../index/optional.D677445B1C959CCA.idx | Bin 0 -> 17146 bytes .../index/os_defines.h.F9B7BF7B578BD0F2.idx | Bin 0 -> 356 bytes .../ostream_insert.h.DD9A679D51F6983E.idx | Bin 0 -> 1138 bytes .../parse_numbers.h.0C44065163342B3D.idx | Bin 0 -> 596 bytes .../poly_hermite.tcc.B99E362A26021ADA.idx | Bin 0 -> 356 bytes .../poly_laguerre.tcc.D6ED401CAF7CDCD2.idx | Bin 0 -> 4478 bytes .../index/posix1_lim.h.65E618CC9AAADE80.idx | Bin 0 -> 1300 bytes .../index/posix2_lim.h.703AAEDC4EF23754.idx | Bin 0 -> 574 bytes .../index/postypes.h.07D2D51973F52512.idx | Bin 0 -> 3702 bytes .../predefined_ops.h.8825642DC6EFAF17.idx | Bin 0 -> 1536 bytes .../index/pstl_config.h.28F53B80F1142E74.idx | Bin 0 -> 1212 bytes .../index/pthread.h.BA62F334A4AE6D48.idx | Bin 0 -> 44784 bytes ...d_stack_min-dynamic.h.1EABA1374AAD1427.idx | Bin 0 -> 304 bytes .../pthreadtypes-arch.h.0A2981EA8E2EBE73.idx | Bin 0 -> 508 bytes .../index/pthreadtypes.h.470AFE1CFB7B64FD.idx | Bin 0 -> 2172 bytes .../index/ptr_traits.h.181EAD7C3090D08B.idx | Bin 0 -> 1428 bytes .../index/q20memory.h.0F0575928166BA11.idx | Bin 0 -> 692 bytes .../q20type_traits.h.F7CFF99F8E0B7830.idx | Bin 0 -> 646 bytes .../index/qalgorithms.h.20DF09AD4DFC82FA.idx | Bin 0 -> 5182 bytes .../qanystringview.h.A299A43F83D36F97.idx | Bin 0 -> 14124 bytes .../index/qarraydata.h.A356470A5C37C8BF.idx | Bin 0 -> 5812 bytes .../qarraydataops.h.356A3AF5B53F88D2.idx | Bin 0 -> 25006 bytes .../qarraydatapointer.h.8BFB1352C4EDB6B9.idx | Bin 0 -> 12664 bytes .../index/qassert.h.7F41528DEBC44909.idx | Bin 0 -> 1538 bytes .../index/qatomic.h.79148BD6D53FE3BC.idx | Bin 0 -> 2328 bytes .../qatomic_cxx11.h.7F5E84AAABBD589C.idx | Bin 0 -> 8898 bytes .../index/qbasicatomic.h.CF40CA459BB24EE2.idx | Bin 0 -> 12402 bytes .../qbindingstorage.h.1CEF0909AEC2E49A.idx | Bin 0 -> 3404 bytes .../index/qbytearray.h.F13443A77B6B1E0D.idx | Bin 0 -> 39934 bytes ...bytearrayalgorithms.h.A5F1E4C1498BA2C0.idx | Bin 0 -> 7556 bytes .../qbytearraylist.h.6DAFBA2420610115.idx | Bin 0 -> 2120 bytes .../qbytearrayview.h.F2E51FAD04BB8B0A.idx | Bin 0 -> 16822 bytes .../index/qcalendar.h.55E17331827ABB6A.idx | Bin 0 -> 7634 bytes .../clangd/index/qchar.h.D49B2F62EE533CE4.idx | Bin 0 -> 43966 bytes .../index/qcompare.h.B65A589F7F119B71.idx | Bin 0 -> 4278 bytes .../qcompare_impl.h.8B1A9EE4B04C37A1.idx | Bin 0 -> 790 bytes .../qcompilerdetection.h.82F65D16BD0DFEC6.idx | Bin 0 -> 4108 bytes .../index/qconfig.h.D805EC108D83738E.idx | Bin 0 -> 1590 bytes .../qconstructormacros.h.06C2DE316956FFD8.idx | Bin 0 -> 268 bytes .../qcontainerfwd.h.1975543D23297CC0.idx | Bin 0 -> 2000 bytes .../qcontainerinfo.h.65539DF62ACFF804.idx | Bin 0 -> 7984 bytes ...containertools_impl.h.8D906FACE19F741C.idx | Bin 0 -> 9508 bytes .../qcontiguouscache.h.B1FE780D789FE5CC.idx | Bin 0 -> 46488 bytes .../qcoreapplication.h.21202ED83997E625.idx | Bin 0 -> 8402 bytes ...pplication_platform.h.7269A02E289F3EB7.idx | Bin 0 -> 460 bytes .../index/qcoreevent.h.23317C64EEC18A11.idx | Bin 0 -> 25728 bytes .../qdarwinhelpers.h.883786CEFC97228B.idx | Bin 0 -> 286 bytes .../index/qdatastream.h.8EEEFE6F0563D86A.idx | Bin 0 -> 22476 bytes .../index/qdatetime.h.6E3F085A42CF5003.idx | Bin 0 -> 26258 bytes .../qdeadlinetimer.h.2C6DE27E28ABF30C.idx | Bin 0 -> 12254 bytes .../index/qdebug.h.89E52550045581F6.idx | Bin 0 -> 33264 bytes .../qelapsedtimer.h.CD9C81B862F02AC3.idx | Bin 0 -> 2474 bytes .../index/qeventloop.h.0FC4984122C4170E.idx | Bin 0 -> 4076 bytes .../qexceptionhandling.h.0DDF6879355B09C4.idx | Bin 0 -> 970 bytes .../index/qflags.h.816512D6C51BE8A0.idx | Bin 0 -> 48794 bytes .../index/qfloat16.h.1042B5152440DBDD.idx | Bin 0 -> 24258 bytes .../index/qforeach.h.B52796A37C207EC4.idx | Bin 0 -> 2506 bytes .../qfunctionpointer.h.B591153171FA8910.idx | Bin 0 -> 370 bytes .../qgenericatomic.h.696AB646CA4583F9.idx | Bin 0 -> 6568 bytes .../index/qglobal.h.B5968A60A7AA2A94.idx | Bin 0 -> 3226 bytes .../qglobalstatic.h.F625B1C70F945541.idx | Bin 0 -> 3286 bytes .../clangd/index/qhash.h.E7031038B8467FA3.idx | Bin 0 -> 88548 bytes .../qhashfunctions.h.EE2A97B32E9ACF79.idx | Bin 0 -> 27588 bytes .../qiodevicebase.h.700729F95CC61F18.idx | Bin 0 -> 1406 bytes .../index/qiterable.h.339EB1908D738780.idx | Bin 0 -> 15204 bytes .../index/qiterator.h.85EBE1363767C3AC.idx | Bin 0 -> 6422 bytes .../clangd/index/qlist.h.FDB904D3A8F45B57.idx | Bin 0 -> 74410 bytes .../index/qlocale.h.F371F7C98D79C7B8.idx | Bin 0 -> 90772 bytes .../index/qlogging.h.42A9ED7407B028CA.idx | Bin 0 -> 7178 bytes .../index/qmalloc.h.C9C43B6ACE41FA8D.idx | Bin 0 -> 1140 bytes .../clangd/index/qmap.h.8FD1D9409E5F085A.idx | Bin 0 -> 50812 bytes .../clangd/index/qmath.h.E39E8E9D7E34701B.idx | Bin 0 -> 10066 bytes .../qmetacontainer.h.B76178CA5AC3E215.idx | Bin 0 -> 33358 bytes .../index/qmetatype.h.655185CD11CE7F68.idx | Bin 0 -> 144956 bytes .../index/qminmax.h.231B912E3BD37FBB.idx | Bin 0 -> 2464 bytes .../index/qmutex.h.CC010A1C4A5C15E8.idx | Bin 0 -> 7126 bytes .../index/qnamespace.h.4CE2B995B9FEF8CC.idx | Bin 0 -> 153946 bytes .../qnativeinterface.h.76250FF61761D609.idx | Bin 0 -> 2842 bytes .../index/qnumeric.h.A9FD425BA65C04FB.idx | Bin 0 -> 6082 bytes .../index/qobject.h.0B7834879FE891FC.idx | Bin 0 -> 23200 bytes .../index/qobject_impl.h.F142E7DD4F9E754A.idx | Bin 0 -> 3226 bytes .../index/qobjectdefs.h.1732B8DFD5CAC339.idx | Bin 0 -> 24192 bytes .../index/qobjectdefs.h.85DA8EE72F2E50B1.idx | Bin 0 -> 640 bytes .../qobjectdefs_impl.h.7C60B8B8EC71882E.idx | Bin 0 -> 23518 bytes .../index/qoverload.h.94408B7DB3D1722E.idx | Bin 0 -> 1650 bytes .../clangd/index/qpair.h.057A8F16B51F4AF3.idx | Bin 0 -> 740 bytes ...qprocessordetection.h.F2B3A37B57C3E3BD.idx | Bin 0 -> 392 bytes .../index/qqueue.h.CC7D6EA14FCD2985.idx | Bin 0 -> 802 bytes .../index/qrefcount.h.5CC10E7CC8A7B1E1.idx | Bin 0 -> 1138 bytes .../qscopedpointer.h.FA3580B48CA3B960.idx | Bin 0 -> 6204 bytes .../index/qscopeguard.h.5B92F0E4384C064E.idx | Bin 0 -> 1674 bytes .../clangd/index/qset.h.88D2FE4524DAFB65.idx | Bin 0 -> 15970 bytes .../index/qshareddata.h.1237F1472C990ADB.idx | Bin 0 -> 15992 bytes .../qshareddata_impl.h.E0E8239C582AA519.idx | Bin 0 -> 3400 bytes .../qsharedpointer.h.67F8D82297BCC477.idx | Bin 0 -> 472 bytes ...qsharedpointer_impl.h.D3CFAC1851C888E9.idx | Bin 0 -> 37564 bytes .../index/qstring.h.530BB87737AE3778.idx | Bin 0 -> 100360 bytes .../qstringalgorithms.h.695C831B8313C915.idx | Bin 0 -> 14150 bytes ...tringconverter_base.h.A582614FC22695DF.idx | Bin 0 -> 7494 bytes .../index/qstringfwd.h.C1D09E56ECCA47E3.idx | Bin 0 -> 1294 bytes .../index/qstringlist.h.682419BCA33BF8A6.idx | Bin 0 -> 7672 bytes .../qstringliteral.h.590A2FE7DF734825.idx | Bin 0 -> 752 bytes .../qstringmatcher.h.C54E59CA9EF3B8F0.idx | Bin 0 -> 2556 bytes .../qstringtokenizer.h.B4A690AC7E2E8E19.idx | Bin 0 -> 18220 bytes .../index/qstringview.h.1EA50CEEEDB61A10.idx | Bin 0 -> 24088 bytes .../clangd/index/qswap.h.13E3D3CF5DECD9B5.idx | Bin 0 -> 1496 bytes .../index/qsysinfo.h.E93DE4203A09446F.idx | Bin 0 -> 1884 bytes .../qsystemdetection.h.D24AA80B64379BA9.idx | Bin 0 -> 470 bytes .../qtaggedpointer.h.11605120E0BFD255.idx | Bin 0 -> 7298 bytes ...qtclasshelpermacros.h.435FB6BD8FFC00F7.idx | Bin 0 -> 3184 bytes .../qtconfigmacros.h.81827B64FB5062F3.idx | Bin 0 -> 812 bytes .../qtcore-config.h.F15638A42A3802A8.idx | Bin 0 -> 1182 bytes .../qtcoreexports.h.8D0D6EDB0621E6DA.idx | Bin 0 -> 374 bytes ...tdeprecationmarkers.h.5E6B8F063E72495D.idx | Bin 0 -> 2542 bytes ...nvironmentvariables.h.4ACCA4058ABD5A3F.idx | Bin 0 -> 1764 bytes .../index/qtextstream.h.785128F50294B1EE.idx | Bin 0 -> 15792 bytes .../index/qthread.h.56F3D7886FF10CAD.idx | Bin 0 -> 5792 bytes .../index/qtmetamacros.h.4FD00192534F8CD9.idx | Bin 0 -> 12114 bytes .../index/qtnoop.h.2D0E09DD30293823.idx | Bin 0 -> 240 bytes ...preprocessorsupport.h.F2057E1301FA48BE.idx | Bin 0 -> 270 bytes .../index/qtresource.h.53C25C338B429667.idx | Bin 0 -> 292 bytes .../index/qtsan_impl.h.ABECD6ABF0F80180.idx | Bin 0 -> 1192 bytes .../qttranslation.h.CB7E050A0841130D.idx | Bin 0 -> 994 bytes .../index/qttypetraits.h.E9064C2EED8F68F4.idx | Bin 0 -> 1682 bytes .../index/qtversion.h.90F953EF09824258.idx | Bin 0 -> 636 bytes .../qtversionchecks.h.412215DB49C5853C.idx | Bin 0 -> 586 bytes .../index/qtypeinfo.h.E568B40189BF73C3.idx | Bin 0 -> 20792 bytes .../index/qtypes.h.74E2942729F2A5FD.idx | Bin 0 -> 4262 bytes .../qutf8stringview.h.531AFBAF3BD54BA5.idx | Bin 0 -> 17350 bytes .../index/qvariant.h.84CB479FE7326F0D.idx | Bin 0 -> 34594 bytes .../qvarlengtharray.h.078789B5E05EDBFA.idx | Bin 0 -> 61926 bytes .../qversiontagging.h.B10C4CB94EDB0ED7.idx | Bin 0 -> 1180 bytes .../qwaitcondition.h.92A2270EF8548346.idx | Bin 0 -> 1662 bytes .../qxptype_traits.h.15B9F421D36FC01F.idx | Bin 0 -> 1780 bytes .../index/range_access.h.ED390E9E7725CC2C.idx | Bin 0 -> 7596 bytes .../clangd/index/ratio.EB9327D7D8EB4617.idx | Bin 0 -> 11988 bytes .../index/refwrap.h.7AB6995A1D5174DC.idx | Bin 0 -> 3624 bytes .../riemann_zeta.tcc.AD9D37D30FE1E39E.idx | Bin 0 -> 7148 bytes .../clangd/index/sched.h.41432389CF465E96.idx | Bin 0 -> 2042 bytes .../clangd/index/sched.h.5B833830F429325A.idx | Bin 0 -> 3540 bytes .../index/select.h.72501F4A5B0BE6E1.idx | Bin 0 -> 248 bytes .../index/select.h.D0F5DD6C4E2CDCA8.idx | Bin 0 -> 2334 bytes .../index/setjmp.h.E4471199DFA1C814.idx | Bin 0 -> 268 bytes .../index/shared_ptr.h.C6BAE9E0392607ED.idx | Bin 0 -> 19726 bytes .../shared_ptr_atomic.h.7B833B6314FBB991.idx | Bin 0 -> 9126 bytes .../shared_ptr_base.h.A3225CC64509B40D.idx | Bin 0 -> 29282 bytes .../index/sigset_t.h.F3117B743F40D72E.idx | Bin 0 -> 362 bytes .../single_threaded.h.5A32171EF01685F7.idx | Bin 0 -> 254 bytes .../index/specfun.h.91DA57E6F6153D4C.idx | Bin 0 -> 27784 bytes ...ecial_function_util.h.929317C81431E44C.idx | Bin 0 -> 388 bytes .../statemachine01.cpp.A5759FFC3EEAC5B8.idx | Bin 0 -> 3436 bytes .../statemachine01.h.826B8BD0D4D0555B.idx | Bin 0 -> 2034 bytes .../index/std_abs.h.D50BF0F12A5B7B30.idx | Bin 0 -> 1258 bytes .../index/std_function.h.365ABBA69ADB2F65.idx | Bin 0 -> 9836 bytes .../index/std_mutex.h.F428AE421933256B.idx | Bin 0 -> 3850 bytes .../index/std_thread.h.09032D1BAD85011D.idx | Bin 0 -> 5166 bytes .../index/stdarg.h.58D35FD2C21E1780.idx | Bin 0 -> 416 bytes .../index/stdbool.h.C8C120BAEB3F950B.idx | Bin 0 -> 244 bytes .../index/stdc-predef.h.F7F17074D9579F84.idx | Bin 0 -> 254 bytes .../index/stddef.h.C71BCFE6B12D3935.idx | Bin 0 -> 854 bytes .../index/stdexcept.92443F8925C3CB50.idx | Bin 0 -> 9162 bytes .../index/stdint-intn.h.C0BEF0D1BDD5E52D.idx | Bin 0 -> 488 bytes .../index/stdint-uintn.h.64979324EF78275C.idx | Bin 0 -> 494 bytes .../index/stdint.h.4208DA0E8AD4B387.idx | Bin 0 -> 4626 bytes .../index/stdint.h.BCD27A3D2AA678A1.idx | Bin 0 -> 358 bytes .../clangd/index/stdio.h.39AA179546A5CA11.idx | Bin 0 -> 29828 bytes .../index/stdio_lim.h.B167440C64CC714B.idx | Bin 0 -> 390 bytes .../index/stdlib-float.h.E41DC942B773DF80.idx | Bin 0 -> 162 bytes .../index/stdlib.h.91784341E5DAF6D4.idx | Bin 0 -> 3188 bytes .../index/stdlib.h.9500795D2AE691D2.idx | Bin 0 -> 36770 bytes .../index/stl_algo.h.0879FD20E2A9BB3E.idx | Bin 0 -> 178524 bytes .../index/stl_algobase.h.2A6DCD4F39B2AA23.idx | Bin 0 -> 36154 bytes .../index/stl_bvector.h.5CF6B01A889B6A18.idx | Bin 0 -> 33884 bytes .../stl_construct.h.3235902743E6BB6E.idx | Bin 0 -> 1362 bytes .../index/stl_function.h.74A8F29B1B744029.idx | Bin 0 -> 35088 bytes .../index/stl_heap.h.17169D17B478C780.idx | Bin 0 -> 17430 bytes .../index/stl_iterator.h.8BE15FF010590915.idx | Bin 0 -> 24798 bytes ...iterator_base_funcs.h.5B1FC7644CA6FE77.idx | Bin 0 -> 2942 bytes ...iterator_base_types.h.BF84D8EA8A7E650C.idx | Bin 0 -> 3874 bytes .../index/stl_list.h.FE782523B928055E.idx | Bin 0 -> 37498 bytes .../index/stl_map.h.A81E92CEDF3FE8A9.idx | Bin 0 -> 29898 bytes .../index/stl_multimap.h.27487CFDE735540D.idx | Bin 0 -> 18650 bytes .../index/stl_numeric.h.6BFB9434F5E8FB64.idx | Bin 0 -> 17862 bytes .../index/stl_pair.h.A4152C84BBE11D16.idx | Bin 0 -> 8472 bytes ...tl_raw_storage_iter.h.49F6D1656FF4ED0D.idx | Bin 0 -> 1184 bytes .../index/stl_relops.h.EB61664F45EBA3F8.idx | Bin 0 -> 1428 bytes .../index/stl_tempbuf.h.11E137584CE4251D.idx | Bin 0 -> 5020 bytes .../index/stl_tree.h.ED6799A823ED3560.idx | Bin 0 -> 68536 bytes .../stl_uninitialized.h.1A1B8C298BBBB58F.idx | Bin 0 -> 15502 bytes .../index/stl_vector.h.111C2F0358FAB00F.idx | Bin 0 -> 33732 bytes .../stream_iterator.h.FAAF82E48922C3E3.idx | Bin 0 -> 4612 bytes .../index/streambuf.D11353068997DD03.idx | Bin 0 -> 14512 bytes .../index/streambuf.tcc.26ADBBEC97C93BFF.idx | Bin 0 -> 1104 bytes .../streambuf_iterator.h.1C2B09EEC066821A.idx | Bin 0 -> 9382 bytes .../clangd/index/string.2039B03F613F2011.idx | Bin 0 -> 2600 bytes .../index/string.h.891400410E4BA387.idx | Bin 0 -> 14024 bytes .../string_conversions.h.44E8E90BE4785EA9.idx | Bin 0 -> 1336 bytes .../index/string_view.75142BD5C438188B.idx | Bin 0 -> 22880 bytes .../string_view.tcc.3A9D6DECE9E667E4.idx | Bin 0 -> 4880 bytes .../index/stringfwd.h.FF9C2C6B2961999D.idx | Bin 0 -> 1098 bytes .../index/strings.h.B9CFF053B196D313.idx | Bin 0 -> 3384 bytes .../index/struct_FILE.h.3C39AA7E06D50F33.idx | Bin 0 -> 428 bytes ...truct___jmp_buf_tag.h.619C6D55F6FFBE81.idx | Bin 0 -> 312 bytes .../struct_itimerspec.h.09A351BC2DEF8BA8.idx | Bin 0 -> 620 bytes .../index/struct_mutex.h.054124744A611CC5.idx | Bin 0 -> 208 bytes .../struct_rwlock.h.9B7732E75E3E6516.idx | Bin 0 -> 210 bytes .../struct_sched_param.h.FFE0A2524F67FC0B.idx | Bin 0 -> 382 bytes .../struct_timespec.h.BC44EC73430A5653.idx | Bin 0 -> 766 bytes .../struct_timeval.h.E132F6DFA1F762C2.idx | Bin 0 -> 520 bytes .../index/struct_tm.h.A6719386D6AD6D8B.idx | Bin 0 -> 1034 bytes .../index/stubs-64.h.91EB6F19F752636D.idx | Bin 0 -> 318 bytes .../clangd/index/stubs.h.DA5B2E8FCDA2A8C1.idx | Bin 0 -> 194 bytes .../index/system_error.F96BCE55D3FF7940.idx | Bin 0 -> 11848 bytes .../testfactory01.cpp.8989D09A641C345D.idx | Bin 0 -> 3126 bytes .../testfactory01.h.EA302AADCBC150E6.idx | Bin 0 -> 2790 bytes ...thread-shared-types.h.19DFAF154D3C29B6.idx | Bin 0 -> 526 bytes .../clangd/index/time.h.406C037FEAE97D8D.idx | Bin 0 -> 12622 bytes .../clangd/index/time.h.7C742BEFB90662A9.idx | Bin 0 -> 964 bytes .../index/time64.h.48E2D2FAC2489DCA.idx | Bin 0 -> 224 bytes .../index/time_t.h.297EB154468449E7.idx | Bin 0 -> 288 bytes .../index/timeout.cpp.2530D45FF6E233F0.idx | Bin 0 -> 2080 bytes .../index/timeout.h.D4885D7768028A61.idx | Bin 0 -> 1706 bytes .../timeoutmanager.cpp.0BBAF3B83918DE0B.idx | Bin 0 -> 2796 bytes .../timeoutmanager.h.3F04A253EE7DC47A.idx | Bin 0 -> 2076 bytes .../timeoutmanager.h.6F96405EF38B1DC4.idx | Bin 0 -> 1926 bytes .../index/timer_t.h.7DD45E92A04DFD5D.idx | Bin 0 -> 328 bytes .../index/timesize.h.6D2BD1647A238841.idx | Bin 0 -> 224 bytes .../clangd/index/timex.h.4CF7EC2A5528EC9F.idx | Bin 0 -> 2672 bytes .../index/trace-config.h.74BCDF859E025607.idx | Bin 0 -> 290 bytes .../index/trace.cpp.760D1A2F93ADE1A2.idx | Bin 0 -> 3344 bytes .../clangd/index/trace.h.67ED6345D165411E.idx | Bin 0 -> 1264 bytes .../clangd/index/tuple.5E2A19BCF5ED5A04.idx | Bin 0 -> 28156 bytes .../index/type_traits.1DAE4F5FA15F497C.idx | Bin 0 -> 44412 bytes .../index/type_traits.h.27424107891FDD0F.idx | Bin 0 -> 398 bytes .../index/typeinfo.A2B5E109AB9576CE.idx | Bin 0 -> 2518 bytes .../clangd/index/types.h.06DCDF73E41B4821.idx | Bin 0 -> 2396 bytes .../clangd/index/types.h.253C91793AF0A32F.idx | Bin 0 -> 4434 bytes .../index/typesizes.h.1882C141143B42BB.idx | Bin 0 -> 1126 bytes .../uintn-identity.h.FF6BE711A1FA279F.idx | Bin 0 -> 248 bytes .../index/uio_lim.h.1487398225E78DB0.idx | Bin 0 -> 180 bytes .../uniform_int_dist.h.4976207E1C76D9F1.idx | Bin 0 -> 22652 bytes .../index/unique_lock.h.E56CC961704D804C.idx | Bin 0 -> 4828 bytes .../index/unique_ptr.h.CA4AF0B8829DF930.idx | Bin 0 -> 23860 bytes .../index/unordered_map.541F2B51771579F3.idx | Bin 0 -> 1430 bytes .../unordered_map.h.E00B35C2FB24F9CA.idx | Bin 0 -> 29874 bytes .../uses_allocator.h.FDB359614F7046E8.idx | Bin 0 -> 1544 bytes .../clangd/index/utility.0D691E027DDC09AC.idx | Bin 0 -> 8390 bytes .../clangd/index/variant.9E91F50EDF95FF1E.idx | Bin 0 -> 25138 bytes .../clangd/index/vector.18FAF943785F099C.idx | Bin 0 -> 890 bytes .../index/vector.tcc.37916E8ACE7E4B6F.idx | Bin 0 -> 41896 bytes .../clangd/index/version.8285EBBC34DD96EA.idx | Bin 0 -> 2228 bytes .../index/waitflags.h.6A14A881B2C30CDA.idx | Bin 0 -> 412 bytes .../index/waitstatus.h.26E204608D673770.idx | Bin 0 -> 458 bytes .../clangd/index/wchar.h.A65FEA87E595D0B5.idx | Bin 0 -> 27816 bytes .../clangd/index/wchar.h.D6524CF0B11BAA59.idx | Bin 0 -> 202 bytes .../index/wint_t.h.8EAC1E3F97948DA7.idx | Bin 0 -> 250 bytes .../index/wordsize.h.BCE926659141151D.idx | Bin 0 -> 204 bytes .../index/xf-config.h.FC35DBB29E8AEC79.idx | Bin 0 -> 522 bytes .../xf-port-config.h.D5A9096ACE4A8E16.idx | Bin 0 -> 2138 bytes .../clangd/index/xf.cpp.83C36CF2F59119C9.idx | Bin 0 -> 4918 bytes .../clangd/index/xf.h.E2DAACAFDFC96408.idx | Bin 0 -> 1118 bytes .../index/xopen_lim.h.E50A8BD3474841CA.idx | Bin 0 -> 548 bytes .../.qtc_clangd/compile_commands.json | 1 + .../Makefile | 2247 ++ .../behavior.o | Bin 0 -> 22488 bytes .../board.o | Bin 0 -> 36328 bytes .../customevent.o | Bin 0 -> 2776 bytes .../defaulttransition.o | Bin 0 -> 2784 bytes .../dispatcher.o | Bin 0 -> 45264 bytes .../eventqueue.o | Bin 0 -> 276224 bytes .../initialevent.o | Bin 0 -> 2776 bytes .../ledcontroller.o | Bin 0 -> 140736 bytes .../main.o | Bin 0 -> 38152 bytes .../mutex.o | Bin 0 -> 69320 bytes .../statemachine01.o | Bin 0 -> 101200 bytes .../testfactory01.o | Bin 0 -> 116400 bytes .../timeout.o | Bin 0 -> 2760 bytes .../timeoutmanager.o | Bin 0 -> 45280 bytes .../trace.o | Bin 0 -> 604072 bytes .../xf.o | Bin 0 -> 718352 bytes .../test1/ide-cubeide-test1-idf/.cproject | 319 + .../test1/ide-cubeide-test1-idf/.cproject_org | 294 + .../test1/ide-cubeide-test1-idf/.project | 86 + .../test1/ide-cubeide-test1-idf/.project_org | 71 + .../ide-cubeide-test1-idf/Core/Inc/main.h | 393 + .../Core/Inc/stm32f7xx_hal_conf.h | 480 + .../Core/Inc/stm32f7xx_it.h | 67 + .../ide-cubeide-test1-idf/Core/Src/main.c | 728 + .../Core/Src/stm32f7xx_hal_msp.c | 168 + .../Core/Src/stm32f7xx_it.c | 214 + .../Core/Src/system_stm32f7xx.c | 244 + .../Device/ST/STM32F7xx/Include/stm32f746xx.h | 17897 ++++++++++++++++ .../Device/ST/STM32F7xx/Include/stm32f7xx.h | 273 + .../ST/STM32F7xx/Include/system_stm32f7xx.h | 105 + .../CMSIS/Device/ST/STM32F7xx/LICENSE.txt | 6 + .../CMSIS/Device/ST/STM32F7xx/License.md | 1 + .../Drivers/CMSIS/Include/cmsis_armcc.h | 865 + .../Drivers/CMSIS/Include/cmsis_armclang.h | 1869 ++ .../Drivers/CMSIS/Include/cmsis_compiler.h | 266 + .../Drivers/CMSIS/Include/cmsis_gcc.h | 2085 ++ .../Drivers/CMSIS/Include/cmsis_iccarm.h | 935 + .../Drivers/CMSIS/Include/cmsis_version.h | 39 + .../Drivers/CMSIS/Include/core_armv8mbl.h | 1918 ++ .../Drivers/CMSIS/Include/core_armv8mml.h | 2927 +++ .../Drivers/CMSIS/Include/core_cm0.h | 949 + .../Drivers/CMSIS/Include/core_cm0plus.h | 1083 + .../Drivers/CMSIS/Include/core_cm1.h | 976 + .../Drivers/CMSIS/Include/core_cm23.h | 1993 ++ .../Drivers/CMSIS/Include/core_cm3.h | 1941 ++ .../Drivers/CMSIS/Include/core_cm33.h | 3002 +++ .../Drivers/CMSIS/Include/core_cm4.h | 2129 ++ .../Drivers/CMSIS/Include/core_cm7.h | 2671 +++ .../Drivers/CMSIS/Include/core_sc000.h | 1022 + .../Drivers/CMSIS/Include/core_sc300.h | 1915 ++ .../Drivers/CMSIS/Include/mpu_armv7.h | 270 + .../Drivers/CMSIS/Include/mpu_armv8.h | 333 + .../Drivers/CMSIS/Include/tz_context.h | 70 + .../Drivers/CMSIS/LICENSE.txt | 201 + .../Inc/Legacy/stm32_hal_legacy.h | 3895 ++++ .../STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h | 275 + .../Inc/stm32f7xx_hal_cortex.h | 404 + .../Inc/stm32f7xx_hal_def.h | 218 + .../Inc/stm32f7xx_hal_dma.h | 747 + .../Inc/stm32f7xx_hal_dma_ex.h | 183 + .../Inc/stm32f7xx_hal_exti.h | 317 + .../Inc/stm32f7xx_hal_flash.h | 415 + .../Inc/stm32f7xx_hal_flash_ex.h | 697 + .../Inc/stm32f7xx_hal_gpio.h | 323 + .../Inc/stm32f7xx_hal_gpio_ex.h | 656 + .../Inc/stm32f7xx_hal_i2c.h | 835 + .../Inc/stm32f7xx_hal_i2c_ex.h | 212 + .../Inc/stm32f7xx_hal_pwr.h | 402 + .../Inc/stm32f7xx_hal_pwr_ex.h | 260 + .../Inc/stm32f7xx_hal_rcc.h | 1307 ++ .../Inc/stm32f7xx_hal_rcc_ex.h | 3521 +++ .../Inc/stm32f7xx_hal_tim.h | 2386 ++ .../Inc/stm32f7xx_hal_tim_ex.h | 358 + .../Inc/stm32f7xx_hal_uart.h | 1632 ++ .../Inc/stm32f7xx_hal_uart_ex.h | 428 + .../Drivers/STM32F7xx_HAL_Driver/LICENSE.txt | 6 + .../Drivers/STM32F7xx_HAL_Driver/License.md | 1 + .../STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c | 619 + .../Src/stm32f7xx_hal_cortex.c | 503 + .../Src/stm32f7xx_hal_dma.c | 1312 ++ .../Src/stm32f7xx_hal_dma_ex.c | 308 + .../Src/stm32f7xx_hal_exti.c | 547 + .../Src/stm32f7xx_hal_flash.c | 819 + .../Src/stm32f7xx_hal_flash_ex.c | 1119 + .../Src/stm32f7xx_hal_gpio.c | 527 + .../Src/stm32f7xx_hal_i2c.c | 6905 ++++++ .../Src/stm32f7xx_hal_i2c_ex.c | 270 + .../Src/stm32f7xx_hal_pwr.c | 597 + .../Src/stm32f7xx_hal_pwr_ex.c | 552 + .../Src/stm32f7xx_hal_rcc.c | 1239 ++ .../Src/stm32f7xx_hal_rcc_ex.c | 1773 ++ .../Src/stm32f7xx_hal_tim.c | 7883 +++++++ .../Src/stm32f7xx_hal_tim_ex.c | 2607 +++ .../Src/stm32f7xx_hal_uart.c | 4021 ++++ .../Src/stm32f7xx_hal_uart_ex.c | 770 + .../STM32F746NGHx_FLASH.ld | 169 + .../config/trace-config.h | 18 + .../config/uart-config.h | 6 + .../config/xf-port-config.h | 10 + .../ide-cubeide-test1-idf.ioc | 1078 + .../launch/ide-cubeide-test1-idf.launch | 73 + .../startup/startup_stm32f746xx.s | 589 + .../test1/ide-qtcreator-test1-idf/common.pri | 10 + .../config/trace-config.h | 11 + .../config/xf-port-config.h | 10 + .../ide-qtcreator-test1-idf/test1-idf.pro | 37 + .../test1-idf.pro.user | 261 + test-bench/test1/src/app/statemachine01.cpp | 64 + test-bench/test1/src/app/statemachine01.h | 56 + test-bench/test1/src/app/testfactory01.cpp | 36 + test-bench/test1/src/app/testfactory01.h | 45 + test-bench/test1/src/main.cpp | 14 + .../test2/ide-cubeide-test2-idf/.cproject | 318 + .../test2/ide-cubeide-test2-idf/.cproject_org | 294 + .../test2/ide-cubeide-test2-idf/.project | 90 + .../test2/ide-cubeide-test2-idf/.project_org | 77 + .../ide-cubeide-test2-idf/Core/Inc/main.h | 393 + .../Core/Inc/stm32f7xx_hal_conf.h | 480 + .../Core/Inc/stm32f7xx_it.h | 67 + .../ide-cubeide-test2-idf/Core/Src/main.c | 728 + .../Core/Src/stm32f7xx_hal_msp.c | 168 + .../Core/Src/stm32f7xx_it.c | 214 + .../Core/Src/system_stm32f7xx.c | 244 + .../Device/ST/STM32F7xx/Include/stm32f746xx.h | 17897 ++++++++++++++++ .../Device/ST/STM32F7xx/Include/stm32f7xx.h | 273 + .../ST/STM32F7xx/Include/system_stm32f7xx.h | 105 + .../CMSIS/Device/ST/STM32F7xx/LICENSE.txt | 6 + .../CMSIS/Device/ST/STM32F7xx/License.md | 1 + .../Drivers/CMSIS/Include/cmsis_armcc.h | 865 + .../Drivers/CMSIS/Include/cmsis_armclang.h | 1869 ++ .../Drivers/CMSIS/Include/cmsis_compiler.h | 266 + .../Drivers/CMSIS/Include/cmsis_gcc.h | 2085 ++ .../Drivers/CMSIS/Include/cmsis_iccarm.h | 935 + .../Drivers/CMSIS/Include/cmsis_version.h | 39 + .../Drivers/CMSIS/Include/core_armv8mbl.h | 1918 ++ .../Drivers/CMSIS/Include/core_armv8mml.h | 2927 +++ .../Drivers/CMSIS/Include/core_cm0.h | 949 + .../Drivers/CMSIS/Include/core_cm0plus.h | 1083 + .../Drivers/CMSIS/Include/core_cm1.h | 976 + .../Drivers/CMSIS/Include/core_cm23.h | 1993 ++ .../Drivers/CMSIS/Include/core_cm3.h | 1941 ++ .../Drivers/CMSIS/Include/core_cm33.h | 3002 +++ .../Drivers/CMSIS/Include/core_cm4.h | 2129 ++ .../Drivers/CMSIS/Include/core_cm7.h | 2671 +++ .../Drivers/CMSIS/Include/core_sc000.h | 1022 + .../Drivers/CMSIS/Include/core_sc300.h | 1915 ++ .../Drivers/CMSIS/Include/mpu_armv7.h | 270 + .../Drivers/CMSIS/Include/mpu_armv8.h | 333 + .../Drivers/CMSIS/Include/tz_context.h | 70 + .../Drivers/CMSIS/LICENSE.txt | 201 + .../Inc/Legacy/stm32_hal_legacy.h | 3895 ++++ .../STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h | 275 + .../Inc/stm32f7xx_hal_cortex.h | 404 + .../Inc/stm32f7xx_hal_def.h | 218 + .../Inc/stm32f7xx_hal_dma.h | 747 + .../Inc/stm32f7xx_hal_dma_ex.h | 183 + .../Inc/stm32f7xx_hal_exti.h | 317 + .../Inc/stm32f7xx_hal_flash.h | 415 + .../Inc/stm32f7xx_hal_flash_ex.h | 697 + .../Inc/stm32f7xx_hal_gpio.h | 323 + .../Inc/stm32f7xx_hal_gpio_ex.h | 656 + .../Inc/stm32f7xx_hal_i2c.h | 835 + .../Inc/stm32f7xx_hal_i2c_ex.h | 212 + .../Inc/stm32f7xx_hal_pwr.h | 402 + .../Inc/stm32f7xx_hal_pwr_ex.h | 260 + .../Inc/stm32f7xx_hal_rcc.h | 1307 ++ .../Inc/stm32f7xx_hal_rcc_ex.h | 3521 +++ .../Inc/stm32f7xx_hal_tim.h | 2386 ++ .../Inc/stm32f7xx_hal_tim_ex.h | 358 + .../Inc/stm32f7xx_hal_uart.h | 1632 ++ .../Inc/stm32f7xx_hal_uart_ex.h | 428 + .../Drivers/STM32F7xx_HAL_Driver/LICENSE.txt | 6 + .../Drivers/STM32F7xx_HAL_Driver/License.md | 1 + .../STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c | 619 + .../Src/stm32f7xx_hal_cortex.c | 503 + .../Src/stm32f7xx_hal_dma.c | 1312 ++ .../Src/stm32f7xx_hal_dma_ex.c | 308 + .../Src/stm32f7xx_hal_exti.c | 547 + .../Src/stm32f7xx_hal_flash.c | 819 + .../Src/stm32f7xx_hal_flash_ex.c | 1119 + .../Src/stm32f7xx_hal_gpio.c | 527 + .../Src/stm32f7xx_hal_i2c.c | 6905 ++++++ .../Src/stm32f7xx_hal_i2c_ex.c | 270 + .../Src/stm32f7xx_hal_pwr.c | 597 + .../Src/stm32f7xx_hal_pwr_ex.c | 552 + .../Src/stm32f7xx_hal_rcc.c | 1239 ++ .../Src/stm32f7xx_hal_rcc_ex.c | 1773 ++ .../Src/stm32f7xx_hal_tim.c | 7883 +++++++ .../Src/stm32f7xx_hal_tim_ex.c | 2607 +++ .../Src/stm32f7xx_hal_uart.c | 4021 ++++ .../Src/stm32f7xx_hal_uart_ex.c | 770 + .../STM32F746NGHx_FLASH.ld | 169 + .../config/trace-config.h | 18 + .../config/uart-config.h | 6 + .../config/xf-port-config.h | 10 + .../ide-cubeide-test2-idf.ioc | 1078 + .../launch/ide-cubeide-test2-idf.launch | 73 + .../startup/startup_stm32f746xx.s | 589 + .../test2/ide-qtcreator-test2-idf/common.pri | 10 + .../config/trace-config.h | 11 + .../config/xf-port-config.h | 12 + .../ide-qtcreator-test2-idf/test2-idf.pro | 37 + test-bench/test2/src/app/statemachine02.cpp | 102 + test-bench/test2/src/app/statemachine02.h | 55 + test-bench/test2/src/app/testfactory02.cpp | 62 + test-bench/test2/src/app/testfactory02.h | 45 + test-bench/test2/src/main.cpp | 14 + .../test3/ide-cubeide-test3-idf/.cproject | 314 + .../test3/ide-cubeide-test3-idf/.cproject_org | 295 + .../test3/ide-cubeide-test3-idf/.gitignore | 1 + .../test3/ide-cubeide-test3-idf/.project | 95 + .../test3/ide-cubeide-test3-idf/.project_org | 82 + .../ide-cubeide-test3-idf/Core/Inc/main.h | 393 + .../Core/Inc/stm32f7xx_hal_conf.h | 480 + .../Core/Inc/stm32f7xx_it.h | 67 + .../ide-cubeide-test3-idf/Core/Src/main.c | 728 + .../Core/Src/stm32f7xx_hal_msp.c | 168 + .../Core/Src/stm32f7xx_it.c | 214 + .../Core/Src/system_stm32f7xx.c | 244 + .../Device/ST/STM32F7xx/Include/stm32f746xx.h | 17897 ++++++++++++++++ .../Device/ST/STM32F7xx/Include/stm32f7xx.h | 273 + .../ST/STM32F7xx/Include/system_stm32f7xx.h | 105 + .../CMSIS/Device/ST/STM32F7xx/LICENSE.txt | 6 + .../CMSIS/Device/ST/STM32F7xx/License.md | 1 + .../Drivers/CMSIS/Include/cmsis_armcc.h | 865 + .../Drivers/CMSIS/Include/cmsis_armclang.h | 1869 ++ .../Drivers/CMSIS/Include/cmsis_compiler.h | 266 + .../Drivers/CMSIS/Include/cmsis_gcc.h | 2085 ++ .../Drivers/CMSIS/Include/cmsis_iccarm.h | 935 + .../Drivers/CMSIS/Include/cmsis_version.h | 39 + .../Drivers/CMSIS/Include/core_armv8mbl.h | 1918 ++ .../Drivers/CMSIS/Include/core_armv8mml.h | 2927 +++ .../Drivers/CMSIS/Include/core_cm0.h | 949 + .../Drivers/CMSIS/Include/core_cm0plus.h | 1083 + .../Drivers/CMSIS/Include/core_cm1.h | 976 + .../Drivers/CMSIS/Include/core_cm23.h | 1993 ++ .../Drivers/CMSIS/Include/core_cm3.h | 1941 ++ .../Drivers/CMSIS/Include/core_cm33.h | 3002 +++ .../Drivers/CMSIS/Include/core_cm4.h | 2129 ++ .../Drivers/CMSIS/Include/core_cm7.h | 2671 +++ .../Drivers/CMSIS/Include/core_sc000.h | 1022 + .../Drivers/CMSIS/Include/core_sc300.h | 1915 ++ .../Drivers/CMSIS/Include/mpu_armv7.h | 270 + .../Drivers/CMSIS/Include/mpu_armv8.h | 333 + .../Drivers/CMSIS/Include/tz_context.h | 70 + .../Drivers/CMSIS/LICENSE.txt | 201 + .../Inc/Legacy/stm32_hal_legacy.h | 3895 ++++ .../STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h | 275 + .../Inc/stm32f7xx_hal_cortex.h | 404 + .../Inc/stm32f7xx_hal_def.h | 218 + .../Inc/stm32f7xx_hal_dma.h | 747 + .../Inc/stm32f7xx_hal_dma_ex.h | 183 + .../Inc/stm32f7xx_hal_exti.h | 317 + .../Inc/stm32f7xx_hal_flash.h | 415 + .../Inc/stm32f7xx_hal_flash_ex.h | 697 + .../Inc/stm32f7xx_hal_gpio.h | 323 + .../Inc/stm32f7xx_hal_gpio_ex.h | 656 + .../Inc/stm32f7xx_hal_i2c.h | 835 + .../Inc/stm32f7xx_hal_i2c_ex.h | 212 + .../Inc/stm32f7xx_hal_pwr.h | 402 + .../Inc/stm32f7xx_hal_pwr_ex.h | 260 + .../Inc/stm32f7xx_hal_rcc.h | 1307 ++ .../Inc/stm32f7xx_hal_rcc_ex.h | 3521 +++ .../Inc/stm32f7xx_hal_tim.h | 2386 ++ .../Inc/stm32f7xx_hal_tim_ex.h | 358 + .../Inc/stm32f7xx_hal_uart.h | 1632 ++ .../Inc/stm32f7xx_hal_uart_ex.h | 428 + .../Drivers/STM32F7xx_HAL_Driver/LICENSE.txt | 6 + .../Drivers/STM32F7xx_HAL_Driver/License.md | 1 + .../STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c | 619 + .../Src/stm32f7xx_hal_cortex.c | 503 + .../Src/stm32f7xx_hal_dma.c | 1312 ++ .../Src/stm32f7xx_hal_dma_ex.c | 308 + .../Src/stm32f7xx_hal_exti.c | 547 + .../Src/stm32f7xx_hal_flash.c | 819 + .../Src/stm32f7xx_hal_flash_ex.c | 1119 + .../Src/stm32f7xx_hal_gpio.c | 527 + .../Src/stm32f7xx_hal_i2c.c | 6905 ++++++ .../Src/stm32f7xx_hal_i2c_ex.c | 270 + .../Src/stm32f7xx_hal_pwr.c | 597 + .../Src/stm32f7xx_hal_pwr_ex.c | 552 + .../Src/stm32f7xx_hal_rcc.c | 1239 ++ .../Src/stm32f7xx_hal_rcc_ex.c | 1773 ++ .../Src/stm32f7xx_hal_tim.c | 7883 +++++++ .../Src/stm32f7xx_hal_tim_ex.c | 2607 +++ .../Src/stm32f7xx_hal_uart.c | 4021 ++++ .../Src/stm32f7xx_hal_uart_ex.c | 770 + .../STM32F746NGHx_FLASH.ld | 169 + .../config/trace-config.h | 18 + .../config/uart-config.h | 6 + .../config/xf-port-config.h | 10 + .../ide-cubeide-test3-idf.ioc | 1078 + .../launch/ide-cubeide-test3-idf.launch | 73 + .../startup/startup_stm32f746xx.s | 589 + .../test3/ide-qtcreator-test3-idf/common.pri | 10 + .../config/trace-config.h | 11 + .../config/xf-port-config.h | 12 + .../ide-qtcreator-test3-idf/test3-idf.pro | 40 + test-bench/test3/src/app/statemachine03.cpp | 73 + test-bench/test3/src/app/statemachine03.h | 49 + test-bench/test3/src/app/testfactory03.cpp | 34 + test-bench/test3/src/app/testfactory03.h | 45 + test-bench/test3/src/events/eventids.h | 24 + test-bench/test3/src/events/evrestart.cpp | 9 + test-bench/test3/src/events/evrestart.h | 19 + test-bench/test3/src/main.cpp | 14 + .../test4/ide-cubeide-test4-idf/.cproject | 321 + .../test4/ide-cubeide-test4-idf/.cproject_org | 295 + .../test4/ide-cubeide-test4-idf/.gitignore | 1 + .../test4/ide-cubeide-test4-idf/.project | 95 + .../test4/ide-cubeide-test4-idf/.project_org | 82 + .../ide-cubeide-test4-idf/Core/Inc/main.h | 393 + .../Core/Inc/stm32f7xx_hal_conf.h | 480 + .../Core/Inc/stm32f7xx_it.h | 67 + .../ide-cubeide-test4-idf/Core/Src/main.c | 728 + .../Core/Src/stm32f7xx_hal_msp.c | 168 + .../Core/Src/stm32f7xx_it.c | 214 + .../Core/Src/system_stm32f7xx.c | 244 + .../Device/ST/STM32F7xx/Include/stm32f746xx.h | 17897 ++++++++++++++++ .../Device/ST/STM32F7xx/Include/stm32f7xx.h | 273 + .../ST/STM32F7xx/Include/system_stm32f7xx.h | 105 + .../CMSIS/Device/ST/STM32F7xx/LICENSE.txt | 6 + .../CMSIS/Device/ST/STM32F7xx/License.md | 1 + .../Drivers/CMSIS/Include/cmsis_armcc.h | 865 + .../Drivers/CMSIS/Include/cmsis_armclang.h | 1869 ++ .../Drivers/CMSIS/Include/cmsis_compiler.h | 266 + .../Drivers/CMSIS/Include/cmsis_gcc.h | 2085 ++ .../Drivers/CMSIS/Include/cmsis_iccarm.h | 935 + .../Drivers/CMSIS/Include/cmsis_version.h | 39 + .../Drivers/CMSIS/Include/core_armv8mbl.h | 1918 ++ .../Drivers/CMSIS/Include/core_armv8mml.h | 2927 +++ .../Drivers/CMSIS/Include/core_cm0.h | 949 + .../Drivers/CMSIS/Include/core_cm0plus.h | 1083 + .../Drivers/CMSIS/Include/core_cm1.h | 976 + .../Drivers/CMSIS/Include/core_cm23.h | 1993 ++ .../Drivers/CMSIS/Include/core_cm3.h | 1941 ++ .../Drivers/CMSIS/Include/core_cm33.h | 3002 +++ .../Drivers/CMSIS/Include/core_cm4.h | 2129 ++ .../Drivers/CMSIS/Include/core_cm7.h | 2671 +++ .../Drivers/CMSIS/Include/core_sc000.h | 1022 + .../Drivers/CMSIS/Include/core_sc300.h | 1915 ++ .../Drivers/CMSIS/Include/mpu_armv7.h | 270 + .../Drivers/CMSIS/Include/mpu_armv8.h | 333 + .../Drivers/CMSIS/Include/tz_context.h | 70 + .../Drivers/CMSIS/LICENSE.txt | 201 + .../Inc/Legacy/stm32_hal_legacy.h | 3895 ++++ .../STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h | 275 + .../Inc/stm32f7xx_hal_cortex.h | 404 + .../Inc/stm32f7xx_hal_def.h | 218 + .../Inc/stm32f7xx_hal_dma.h | 747 + .../Inc/stm32f7xx_hal_dma_ex.h | 183 + .../Inc/stm32f7xx_hal_exti.h | 317 + .../Inc/stm32f7xx_hal_flash.h | 415 + .../Inc/stm32f7xx_hal_flash_ex.h | 697 + .../Inc/stm32f7xx_hal_gpio.h | 323 + .../Inc/stm32f7xx_hal_gpio_ex.h | 656 + .../Inc/stm32f7xx_hal_i2c.h | 835 + .../Inc/stm32f7xx_hal_i2c_ex.h | 212 + .../Inc/stm32f7xx_hal_pwr.h | 402 + .../Inc/stm32f7xx_hal_pwr_ex.h | 260 + .../Inc/stm32f7xx_hal_rcc.h | 1307 ++ .../Inc/stm32f7xx_hal_rcc_ex.h | 3521 +++ .../Inc/stm32f7xx_hal_tim.h | 2386 ++ .../Inc/stm32f7xx_hal_tim_ex.h | 358 + .../Inc/stm32f7xx_hal_uart.h | 1632 ++ .../Inc/stm32f7xx_hal_uart_ex.h | 428 + .../Drivers/STM32F7xx_HAL_Driver/LICENSE.txt | 6 + .../Drivers/STM32F7xx_HAL_Driver/License.md | 1 + .../STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c | 619 + .../Src/stm32f7xx_hal_cortex.c | 503 + .../Src/stm32f7xx_hal_dma.c | 1312 ++ .../Src/stm32f7xx_hal_dma_ex.c | 308 + .../Src/stm32f7xx_hal_exti.c | 547 + .../Src/stm32f7xx_hal_flash.c | 819 + .../Src/stm32f7xx_hal_flash_ex.c | 1119 + .../Src/stm32f7xx_hal_gpio.c | 527 + .../Src/stm32f7xx_hal_i2c.c | 6905 ++++++ .../Src/stm32f7xx_hal_i2c_ex.c | 270 + .../Src/stm32f7xx_hal_pwr.c | 597 + .../Src/stm32f7xx_hal_pwr_ex.c | 552 + .../Src/stm32f7xx_hal_rcc.c | 1239 ++ .../Src/stm32f7xx_hal_rcc_ex.c | 1773 ++ .../Src/stm32f7xx_hal_tim.c | 7883 +++++++ .../Src/stm32f7xx_hal_tim_ex.c | 2607 +++ .../Src/stm32f7xx_hal_uart.c | 4021 ++++ .../Src/stm32f7xx_hal_uart_ex.c | 770 + .../STM32F746NGHx_FLASH.ld | 169 + .../config/trace-config.h | 18 + .../config/uart-config.h | 6 + .../config/xf-port-config.h | 10 + .../ide-cubeide-test4-idf.ioc | 1078 + .../launch/ide-cubeide-test4-idf.launch | 73 + .../startup/startup_stm32f746nghx.s | 573 + .../test4/ide-qtcreator-test4-idf/common.pri | 10 + .../config/trace-config.h | 11 + .../config/xf-port-config.h | 12 + .../ide-qtcreator-test4-idf/test4-idf.pro | 42 + test-bench/test4/src/app/statemachine04a.cpp | 92 + test-bench/test4/src/app/statemachine04a.h | 54 + test-bench/test4/src/app/statemachine04b.cpp | 85 + test-bench/test4/src/app/statemachine04b.h | 53 + test-bench/test4/src/app/testfactory04.cpp | 39 + test-bench/test4/src/app/testfactory04.h | 47 + test-bench/test4/src/events/eventids.h | 24 + test-bench/test4/src/events/evrestart.cpp | 9 + test-bench/test4/src/events/evrestart.h | 17 + test-bench/test4/src/main.cpp | 14 + .../test5/ide-cubeide-test5-idf/.cproject | 313 + .../test5/ide-cubeide-test5-idf/.cproject_org | 295 + .../test5/ide-cubeide-test5-idf/.gitignore | 1 + .../test5/ide-cubeide-test5-idf/.project | 95 + .../test5/ide-cubeide-test5-idf/.project_org | 82 + .../ide-cubeide-test5-idf/Core/Inc/main.h | 393 + .../Core/Inc/stm32f7xx_hal_conf.h | 480 + .../Core/Inc/stm32f7xx_it.h | 67 + .../ide-cubeide-test5-idf/Core/Src/main.c | 728 + .../Core/Src/stm32f7xx_hal_msp.c | 168 + .../Core/Src/stm32f7xx_it.c | 214 + .../Core/Src/system_stm32f7xx.c | 244 + .../Device/ST/STM32F7xx/Include/stm32f746xx.h | 17897 ++++++++++++++++ .../Device/ST/STM32F7xx/Include/stm32f7xx.h | 273 + .../ST/STM32F7xx/Include/system_stm32f7xx.h | 105 + .../CMSIS/Device/ST/STM32F7xx/LICENSE.txt | 6 + .../CMSIS/Device/ST/STM32F7xx/License.md | 1 + .../Drivers/CMSIS/Include/cmsis_armcc.h | 865 + .../Drivers/CMSIS/Include/cmsis_armclang.h | 1869 ++ .../Drivers/CMSIS/Include/cmsis_compiler.h | 266 + .../Drivers/CMSIS/Include/cmsis_gcc.h | 2085 ++ .../Drivers/CMSIS/Include/cmsis_iccarm.h | 935 + .../Drivers/CMSIS/Include/cmsis_version.h | 39 + .../Drivers/CMSIS/Include/core_armv8mbl.h | 1918 ++ .../Drivers/CMSIS/Include/core_armv8mml.h | 2927 +++ .../Drivers/CMSIS/Include/core_cm0.h | 949 + .../Drivers/CMSIS/Include/core_cm0plus.h | 1083 + .../Drivers/CMSIS/Include/core_cm1.h | 976 + .../Drivers/CMSIS/Include/core_cm23.h | 1993 ++ .../Drivers/CMSIS/Include/core_cm3.h | 1941 ++ .../Drivers/CMSIS/Include/core_cm33.h | 3002 +++ .../Drivers/CMSIS/Include/core_cm4.h | 2129 ++ .../Drivers/CMSIS/Include/core_cm7.h | 2671 +++ .../Drivers/CMSIS/Include/core_sc000.h | 1022 + .../Drivers/CMSIS/Include/core_sc300.h | 1915 ++ .../Drivers/CMSIS/Include/mpu_armv7.h | 270 + .../Drivers/CMSIS/Include/mpu_armv8.h | 333 + .../Drivers/CMSIS/Include/tz_context.h | 70 + .../Drivers/CMSIS/LICENSE.txt | 201 + .../Inc/Legacy/stm32_hal_legacy.h | 3895 ++++ .../STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h | 275 + .../Inc/stm32f7xx_hal_cortex.h | 404 + .../Inc/stm32f7xx_hal_def.h | 218 + .../Inc/stm32f7xx_hal_dma.h | 747 + .../Inc/stm32f7xx_hal_dma_ex.h | 183 + .../Inc/stm32f7xx_hal_exti.h | 317 + .../Inc/stm32f7xx_hal_flash.h | 415 + .../Inc/stm32f7xx_hal_flash_ex.h | 697 + .../Inc/stm32f7xx_hal_gpio.h | 323 + .../Inc/stm32f7xx_hal_gpio_ex.h | 656 + .../Inc/stm32f7xx_hal_i2c.h | 835 + .../Inc/stm32f7xx_hal_i2c_ex.h | 212 + .../Inc/stm32f7xx_hal_pwr.h | 402 + .../Inc/stm32f7xx_hal_pwr_ex.h | 260 + .../Inc/stm32f7xx_hal_rcc.h | 1307 ++ .../Inc/stm32f7xx_hal_rcc_ex.h | 3521 +++ .../Inc/stm32f7xx_hal_tim.h | 2386 ++ .../Inc/stm32f7xx_hal_tim_ex.h | 358 + .../Inc/stm32f7xx_hal_uart.h | 1632 ++ .../Inc/stm32f7xx_hal_uart_ex.h | 428 + .../Drivers/STM32F7xx_HAL_Driver/LICENSE.txt | 6 + .../Drivers/STM32F7xx_HAL_Driver/License.md | 1 + .../STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c | 619 + .../Src/stm32f7xx_hal_cortex.c | 503 + .../Src/stm32f7xx_hal_dma.c | 1312 ++ .../Src/stm32f7xx_hal_dma_ex.c | 308 + .../Src/stm32f7xx_hal_exti.c | 547 + .../Src/stm32f7xx_hal_flash.c | 819 + .../Src/stm32f7xx_hal_flash_ex.c | 1119 + .../Src/stm32f7xx_hal_gpio.c | 527 + .../Src/stm32f7xx_hal_i2c.c | 6905 ++++++ .../Src/stm32f7xx_hal_i2c_ex.c | 270 + .../Src/stm32f7xx_hal_pwr.c | 597 + .../Src/stm32f7xx_hal_pwr_ex.c | 552 + .../Src/stm32f7xx_hal_rcc.c | 1239 ++ .../Src/stm32f7xx_hal_rcc_ex.c | 1773 ++ .../Src/stm32f7xx_hal_tim.c | 7883 +++++++ .../Src/stm32f7xx_hal_tim_ex.c | 2607 +++ .../Src/stm32f7xx_hal_uart.c | 4021 ++++ .../Src/stm32f7xx_hal_uart_ex.c | 770 + .../STM32F746NGHx_FLASH.ld | 169 + .../config/trace-config.h | 18 + .../config/uart-config.h | 6 + .../config/xf-port-config.h | 10 + .../ide-cubeide-test5-idf.ioc | 1078 + .../launch/ide-cubeide-test5-idf.launch | 73 + .../startup/startup_stm32f746xx.s | 589 + .../test5/ide-qtcreator-test5-idf/common.pri | 10 + .../config/trace-config.h | 11 + .../config/xf-port-config.h | 12 + .../ide-qtcreator-test5-idf/test5-idf.pro | 42 + test-bench/test5/src/app/statemachine05a.cpp | 62 + test-bench/test5/src/app/statemachine05a.h | 54 + test-bench/test5/src/app/statemachine05b.cpp | 62 + test-bench/test5/src/app/statemachine05b.h | 54 + test-bench/test5/src/app/testfactory05.cpp | 39 + test-bench/test5/src/app/testfactory05.h | 49 + test-bench/test5/src/events/eventids.h | 24 + test-bench/test5/src/events/evrestart.cpp | 9 + test-bench/test5/src/events/evrestart.h | 17 + test-bench/test5/src/main.cpp | 14 + 1860 files changed, 582828 insertions(+) create mode 100644 documentation.html create mode 100644 src/mdw/trace/config/trace-config.h create mode 100644 src/mdw/trace/doxygen/Doxyfile create mode 100644 src/mdw/trace/doxygen/output/html/annotated.html create mode 100644 src/mdw/trace/doxygen/output/html/bc_s.png create mode 100644 src/mdw/trace/doxygen/output/html/bdwn.png create mode 100644 src/mdw/trace/doxygen/output/html/class_trace-members.html create mode 100644 src/mdw/trace/doxygen/output/html/class_trace.html create mode 100644 src/mdw/trace/doxygen/output/html/classes.html create mode 100644 src/mdw/trace/doxygen/output/html/closed.png create mode 100644 src/mdw/trace/doxygen/output/html/doc.png create mode 100644 src/mdw/trace/doxygen/output/html/doxygen.css create mode 100644 src/mdw/trace/doxygen/output/html/doxygen.svg create mode 100644 src/mdw/trace/doxygen/output/html/dynsections.js create mode 100644 src/mdw/trace/doxygen/output/html/examples.html create mode 100644 src/mdw/trace/doxygen/output/html/files.html create mode 100644 src/mdw/trace/doxygen/output/html/folderclosed.png create mode 100644 src/mdw/trace/doxygen/output/html/folderopen.png create mode 100644 src/mdw/trace/doxygen/output/html/functions.html create mode 100644 src/mdw/trace/doxygen/output/html/functions_func.html create mode 100644 src/mdw/trace/doxygen/output/html/graph_legend.html create mode 100644 src/mdw/trace/doxygen/output/html/graph_legend.md5 create mode 100644 src/mdw/trace/doxygen/output/html/graph_legend.png create mode 100644 src/mdw/trace/doxygen/output/html/index.html create mode 100644 src/mdw/trace/doxygen/output/html/jquery.js create mode 100644 src/mdw/trace/doxygen/output/html/menu.js create mode 100644 src/mdw/trace/doxygen/output/html/menudata.js create mode 100644 src/mdw/trace/doxygen/output/html/nav_f.png create mode 100644 src/mdw/trace/doxygen/output/html/nav_g.png create mode 100644 src/mdw/trace/doxygen/output/html/nav_h.png create mode 100644 src/mdw/trace/doxygen/output/html/open.png create mode 100644 src/mdw/trace/doxygen/output/html/search/all_0.html create mode 100644 src/mdw/trace/doxygen/output/html/search/all_0.js create mode 100644 src/mdw/trace/doxygen/output/html/search/all_1.html create mode 100644 src/mdw/trace/doxygen/output/html/search/all_1.js create mode 100644 src/mdw/trace/doxygen/output/html/search/all_2.html create mode 100644 src/mdw/trace/doxygen/output/html/search/all_2.js create mode 100644 src/mdw/trace/doxygen/output/html/search/all_3.html create mode 100644 src/mdw/trace/doxygen/output/html/search/all_3.js create mode 100644 src/mdw/trace/doxygen/output/html/search/all_4.html create mode 100644 src/mdw/trace/doxygen/output/html/search/all_4.js create mode 100644 src/mdw/trace/doxygen/output/html/search/classes_0.html create mode 100644 src/mdw/trace/doxygen/output/html/search/classes_0.js create mode 100644 src/mdw/trace/doxygen/output/html/search/close.svg create mode 100644 src/mdw/trace/doxygen/output/html/search/functions_0.html create mode 100644 src/mdw/trace/doxygen/output/html/search/functions_0.js create mode 100644 src/mdw/trace/doxygen/output/html/search/functions_1.html create mode 100644 src/mdw/trace/doxygen/output/html/search/functions_1.js create mode 100644 src/mdw/trace/doxygen/output/html/search/functions_2.html create mode 100644 src/mdw/trace/doxygen/output/html/search/functions_2.js create mode 100644 src/mdw/trace/doxygen/output/html/search/functions_3.html create mode 100644 src/mdw/trace/doxygen/output/html/search/functions_3.js create mode 100644 src/mdw/trace/doxygen/output/html/search/mag_sel.svg create mode 100644 src/mdw/trace/doxygen/output/html/search/nomatches.html create mode 100644 src/mdw/trace/doxygen/output/html/search/pages_0.html create mode 100644 src/mdw/trace/doxygen/output/html/search/pages_0.js create mode 100644 src/mdw/trace/doxygen/output/html/search/search.css create mode 100644 src/mdw/trace/doxygen/output/html/search/search.js create mode 100644 src/mdw/trace/doxygen/output/html/search/search_l.png create mode 100644 src/mdw/trace/doxygen/output/html/search/search_m.png create mode 100644 src/mdw/trace/doxygen/output/html/search/search_r.png create mode 100644 src/mdw/trace/doxygen/output/html/search/searchdata.js create mode 100644 src/mdw/trace/doxygen/output/html/splitbar.png create mode 100644 src/mdw/trace/doxygen/output/html/sync_off.png create mode 100644 src/mdw/trace/doxygen/output/html/sync_on.png create mode 100644 src/mdw/trace/doxygen/output/html/tab_a.png create mode 100644 src/mdw/trace/doxygen/output/html/tab_b.png create mode 100644 src/mdw/trace/doxygen/output/html/tab_h.png create mode 100644 src/mdw/trace/doxygen/output/html/tab_s.png create mode 100644 src/mdw/trace/doxygen/output/html/tabs.css create mode 100644 src/mdw/trace/doxygen/output/html/trace-example01_8cpp-example.html create mode 100644 src/mdw/trace/doxygen/output/html/trace_8h_source.html create mode 100644 src/mdw/trace/doxygen/trace.tag create mode 100644 src/mdw/trace/examples/trace-example01.cpp create mode 100644 src/mdw/trace/trace.h create mode 100644 src/platform/f7-disco-gcc/board/ledcontroller.cpp create mode 100644 src/platform/f7-disco-gcc/board/ledcontroller.h create mode 100644 src/platform/f7-disco-gcc/board/trace.cpp create mode 100644 src/platform/f7-disco-gcc/config/ledcontroller-config.h create mode 100644 src/platform/f7-disco-gcc/config/trace-config.h create mode 100644 src/platform/f7-disco-gcc/config/uart-config.h create mode 100644 src/platform/f7-disco-gcc/mcu/critical/critical.cpp create mode 100644 src/platform/f7-disco-gcc/mcu/critical/critical.h create mode 100644 src/platform/f7-disco-gcc/mcu/hal/uart.cpp create mode 100644 src/platform/f7-disco-gcc/mcu/hal/uart.h create mode 100644 src/platform/f7-disco-gcc/mcu/mcu.h create mode 100644 src/platform/qt/board/board.cpp create mode 100644 src/platform/qt/board/board.h create mode 100644 src/platform/qt/board/ledcontroller.cpp create mode 100644 src/platform/qt/board/ledcontroller.h create mode 100644 src/platform/qt/board/trace.cpp create mode 100644 src/platform/qt/config/ledcontroller-config.h create mode 100644 src/platform/qt/platform-qt.pri create mode 100644 src/simplified/xf/config/xf-config.h create mode 100644 src/simplified/xf/core/behavior.cpp create mode 100644 src/simplified/xf/core/customevent.cpp create mode 100644 src/simplified/xf/core/defaulttransition.cpp create mode 100644 src/simplified/xf/core/initialevent.cpp create mode 100644 src/simplified/xf/core/timeout.cpp create mode 100644 src/simplified/xf/doxygen/Doxyfile create mode 100644 src/simplified/xf/doxygen/images/cmd-simple-xf.png create mode 100644 src/simplified/xf/doxygen/images/comp-simple-xf.png create mode 100644 src/simplified/xf/doxygen/output/html/annotated.html create mode 100644 src/simplified/xf/doxygen/output/html/bc_s.png create mode 100644 src/simplified/xf/doxygen/output/html/bdwn.png create mode 100644 src/simplified/xf/doxygen/output/html/behavior_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/c-wrapper-functions_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/class_dispatcher_thread-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_dispatcher_thread.html create mode 100644 src/simplified/xf/doxygen/output/html/class_dispatcher_thread__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_dispatcher_thread__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_dispatcher_thread__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_dispatcher_thread__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_dispatcher_thread__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_dispatcher_thread__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_behavior-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_behavior.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_behavior__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_behavior__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_behavior__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_behavior__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_behavior__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_behavior__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_custom_event-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_custom_event.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_custom_event__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_custom_event__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_custom_event__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_custom_event__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_custom_event__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_custom_event__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_default_transition-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_default_transition.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_default_transition__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_default_transition__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_default_transition__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_default_transition__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_default_transition__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_default_transition__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_dispatcher-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_dispatcher.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_dispatcher__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_dispatcher__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_dispatcher__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_dispatcher__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_dispatcher__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_dispatcher__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_queue-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_queue.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_queue__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_queue__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_queue__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_queue__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_queue__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_queue__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_status-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_status.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_status__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_status__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_event_status__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_initial_event-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_initial_event.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_initial_event__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_initial_event__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_initial_event__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_initial_event__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_initial_event__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_initial_event__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_mutex-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_mutex.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_mutex__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_mutex__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_mutex__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_mutex__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_mutex__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_mutex__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout_manager-members.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout_manager.html create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout_manager__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout_manager__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout_manager__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout_manager__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout_manager__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/class_x_f_timeout_manager__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classes.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_behavior-members.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_behavior.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_behavior__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_behavior__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_behavior__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_behavior__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_behavior__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_behavior__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_dispatcher-members.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_dispatcher.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_dispatcher__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_dispatcher__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_dispatcher__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_dispatcher__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_dispatcher__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_dispatcher__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_event_queue-members.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_event_queue.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_event_queue__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_event_queue__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_event_queue__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_event_queue__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_event_queue__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_event_queue__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_mutex-members.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_mutex.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_mutex__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_mutex__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_mutex__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_mutex__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_mutex__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_mutex__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_timeout_manager-members.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_timeout_manager.html create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_timeout_manager__coll__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_timeout_manager__coll__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_timeout_manager__coll__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_timeout_manager__inherit__graph.map create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_timeout_manager__inherit__graph.md5 create mode 100644 src/simplified/xf/doxygen/output/html/classinterface_1_1_x_f_timeout_manager__inherit__graph.png create mode 100644 src/simplified/xf/doxygen/output/html/closed.png create mode 100644 src/simplified/xf/doxygen/output/html/cmd-simple-xf.png create mode 100644 src/simplified/xf/doxygen/output/html/comp-simple-xf.png create mode 100644 src/simplified/xf/doxygen/output/html/customevent_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/defaulttransition_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_4270bfced15e0e73154b13468c7c9ad9.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_57cda098af696b4de7fb60a88403e4d2.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_5a361383a26c97640254246527d75310.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_651562d8bf6cfd3e81eff5b570d7df50.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_6529456bf0e894bbd172ced5a1b441f6.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_82ab3dd590b017e50c86444bc9a71ec7.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_9608b59ac3ea3c1e535ab29e1ccc0ee7.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_9f351d46ce3cc29445a41dc3a31e6919.html create mode 100644 src/simplified/xf/doxygen/output/html/dir_d44c64559bbebec7f509842c48db8b23.html create mode 100644 src/simplified/xf/doxygen/output/html/doc.png create mode 100644 src/simplified/xf/doxygen/output/html/doxygen.css create mode 100644 src/simplified/xf/doxygen/output/html/doxygen.svg create mode 100644 src/simplified/xf/doxygen/output/html/dynsections.js create mode 100644 src/simplified/xf/doxygen/output/html/event_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/eventstatus_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/files.html create mode 100644 src/simplified/xf/doxygen/output/html/folderclosed.png create mode 100644 src/simplified/xf/doxygen/output/html/folderopen.png create mode 100644 src/simplified/xf/doxygen/output/html/functions.html create mode 100644 src/simplified/xf/doxygen/output/html/functions_enum.html create mode 100644 src/simplified/xf/doxygen/output/html/functions_eval.html create mode 100644 src/simplified/xf/doxygen/output/html/functions_func.html create mode 100644 src/simplified/xf/doxygen/output/html/functions_type.html create mode 100644 src/simplified/xf/doxygen/output/html/functions_vars.html create mode 100644 src/simplified/xf/doxygen/output/html/graph_legend.html create mode 100644 src/simplified/xf/doxygen/output/html/graph_legend.md5 create mode 100644 src/simplified/xf/doxygen/output/html/graph_legend.png create mode 100644 src/simplified/xf/doxygen/output/html/group__port__common.html create mode 100644 src/simplified/xf/doxygen/output/html/group__port__idf__qt.html create mode 100644 src/simplified/xf/doxygen/output/html/group__port__idf__qt.map create mode 100644 src/simplified/xf/doxygen/output/html/group__port__idf__qt.md5 create mode 100644 src/simplified/xf/doxygen/output/html/group__port__idf__qt.png create mode 100644 src/simplified/xf/doxygen/output/html/group__port__idf__stm32.html create mode 100644 src/simplified/xf/doxygen/output/html/group__port__idf__stm32.map create mode 100644 src/simplified/xf/doxygen/output/html/group__port__idf__stm32.md5 create mode 100644 src/simplified/xf/doxygen/output/html/group__port__idf__stm32.png create mode 100644 src/simplified/xf/doxygen/output/html/group__xf__core.html create mode 100644 src/simplified/xf/doxygen/output/html/hierarchy.html create mode 100644 src/simplified/xf/doxygen/output/html/include_2xf_2interface_2dispatcher_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/include_2xf_2interface_2eventqueue_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/include_2xf_2interface_2mutex_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/include_2xf_2interface_2timeoutmanager_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/index.html create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_0.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_0.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_0.png create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_1.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_1.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_1.png create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_2.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_2.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_2.png create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_3.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_3.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_3.png create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_4.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_4.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_4.png create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_5.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_5.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_5.png create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_6.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_6.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_6.png create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_7.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_7.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_7.png create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_8.map create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_8.md5 create mode 100644 src/simplified/xf/doxygen/output/html/inherit_graph_8.png create mode 100644 src/simplified/xf/doxygen/output/html/inherits.html create mode 100644 src/simplified/xf/doxygen/output/html/initialevent_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/interface_2behavior_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/jquery.js create mode 100644 src/simplified/xf/doxygen/output/html/menu.js create mode 100644 src/simplified/xf/doxygen/output/html/menudata.js create mode 100644 src/simplified/xf/doxygen/output/html/modules.html create mode 100644 src/simplified/xf/doxygen/output/html/nav_f.png create mode 100644 src/simplified/xf/doxygen/output/html/nav_g.png create mode 100644 src/simplified/xf/doxygen/output/html/nav_h.png create mode 100644 src/simplified/xf/doxygen/output/html/open.png create mode 100644 src/simplified/xf/doxygen/output/html/port_2common_2dispatcher_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/port_2common_2timeoutmanager_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/port_2idf-qt_2eventqueue_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/port_2idf-qt_2mutex_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/port_2idf-stm32_2eventqueue_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/port_2idf-stm32_2mutex_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_1.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_1.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_10.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_10.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_11.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_11.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_12.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_12.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_13.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_13.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_2.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_2.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_3.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_3.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_4.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_4.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_5.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_5.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_6.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_6.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_7.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_7.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_8.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_8.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_9.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_9.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_a.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_a.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_b.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_b.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_c.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_c.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_d.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_d.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_e.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_e.js create mode 100644 src/simplified/xf/doxygen/output/html/search/all_f.html create mode 100644 src/simplified/xf/doxygen/output/html/search/all_f.js create mode 100644 src/simplified/xf/doxygen/output/html/search/classes_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/classes_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/classes_1.html create mode 100644 src/simplified/xf/doxygen/output/html/search/classes_1.js create mode 100644 src/simplified/xf/doxygen/output/html/search/close.svg create mode 100644 src/simplified/xf/doxygen/output/html/search/enums_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enums_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enums_1.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enums_1.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_1.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_1.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_2.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_2.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_3.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_3.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_4.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_4.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_5.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_5.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_6.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_6.js create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_7.html create mode 100644 src/simplified/xf/doxygen/output/html/search/enumvalues_7.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_1.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_1.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_2.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_2.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_3.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_3.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_4.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_4.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_5.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_5.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_6.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_6.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_7.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_7.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_8.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_8.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_9.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_9.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_a.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_a.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_b.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_b.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_c.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_c.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_d.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_d.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_e.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_e.js create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_f.html create mode 100644 src/simplified/xf/doxygen/output/html/search/functions_f.js create mode 100644 src/simplified/xf/doxygen/output/html/search/groups_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/groups_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/groups_1.html create mode 100644 src/simplified/xf/doxygen/output/html/search/groups_1.js create mode 100644 src/simplified/xf/doxygen/output/html/search/mag_sel.svg create mode 100644 src/simplified/xf/doxygen/output/html/search/nomatches.html create mode 100644 src/simplified/xf/doxygen/output/html/search/pages_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/pages_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/search.css create mode 100644 src/simplified/xf/doxygen/output/html/search/search.js create mode 100644 src/simplified/xf/doxygen/output/html/search/search_l.png create mode 100644 src/simplified/xf/doxygen/output/html/search/search_m.png create mode 100644 src/simplified/xf/doxygen/output/html/search/search_r.png create mode 100644 src/simplified/xf/doxygen/output/html/search/searchdata.js create mode 100644 src/simplified/xf/doxygen/output/html/search/typedefs_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/typedefs_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/typedefs_1.html create mode 100644 src/simplified/xf/doxygen/output/html/search/typedefs_1.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_0.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_0.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_1.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_1.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_2.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_2.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_3.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_3.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_4.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_4.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_5.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_5.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_6.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_6.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_7.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_7.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_8.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_8.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_9.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_9.js create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_a.html create mode 100644 src/simplified/xf/doxygen/output/html/search/variables_a.js create mode 100644 src/simplified/xf/doxygen/output/html/splitbar.png create mode 100644 src/simplified/xf/doxygen/output/html/sync_off.png create mode 100644 src/simplified/xf/doxygen/output/html/sync_on.png create mode 100644 src/simplified/xf/doxygen/output/html/tab_a.png create mode 100644 src/simplified/xf/doxygen/output/html/tab_b.png create mode 100644 src/simplified/xf/doxygen/output/html/tab_h.png create mode 100644 src/simplified/xf/doxygen/output/html/tab_s.png create mode 100644 src/simplified/xf/doxygen/output/html/tabs.css create mode 100644 src/simplified/xf/doxygen/output/html/timeout_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/xf-config_8h_source.html create mode 100644 src/simplified/xf/doxygen/output/html/xf_8h_source.html create mode 100644 src/simplified/xf/doxygen/xf.tag create mode 100644 src/simplified/xf/include/xf/behavior.h create mode 100644 src/simplified/xf/include/xf/customevent.h create mode 100644 src/simplified/xf/include/xf/defaulttransition.h create mode 100644 src/simplified/xf/include/xf/event.h create mode 100644 src/simplified/xf/include/xf/eventstatus.h create mode 100644 src/simplified/xf/include/xf/initialevent.h create mode 100644 src/simplified/xf/include/xf/interface/behavior.h create mode 100644 src/simplified/xf/include/xf/interface/dispatcher.h create mode 100644 src/simplified/xf/include/xf/interface/eventqueue.h create mode 100644 src/simplified/xf/include/xf/interface/mutex.h create mode 100644 src/simplified/xf/include/xf/interface/timeoutmanager.h create mode 100644 src/simplified/xf/include/xf/timeout.h create mode 100644 src/simplified/xf/include/xf/xf-core.dox create mode 100644 src/simplified/xf/include/xf/xf.h create mode 100644 src/simplified/xf/port/README.md create mode 100644 src/simplified/xf/port/README.pdf create mode 100644 src/simplified/xf/port/common/README.md create mode 100644 src/simplified/xf/port/common/README.pdf create mode 100644 src/simplified/xf/port/common/dispatcher.cpp create mode 100644 src/simplified/xf/port/common/dispatcher.h create mode 100644 src/simplified/xf/port/common/port-common.dox create mode 100644 src/simplified/xf/port/common/timeoutmanager.cpp create mode 100644 src/simplified/xf/port/common/timeoutmanager.h create mode 100644 src/simplified/xf/port/common/xf-port-common.pri create mode 100644 src/simplified/xf/port/idf-qt/README.md create mode 100644 src/simplified/xf/port/idf-qt/README.pdf create mode 100644 src/simplified/xf/port/idf-qt/eventqueue.cpp create mode 100644 src/simplified/xf/port/idf-qt/eventqueue.h create mode 100644 src/simplified/xf/port/idf-qt/mutex.cpp create mode 100644 src/simplified/xf/port/idf-qt/mutex.h create mode 100644 src/simplified/xf/port/idf-qt/port-idf-qt.dox create mode 100644 src/simplified/xf/port/idf-qt/xf-port-idf-qt.pri create mode 100644 src/simplified/xf/port/idf-qt/xf.cpp create mode 100644 src/simplified/xf/port/idf-stm32/README.md create mode 100644 src/simplified/xf/port/idf-stm32/README.pdf create mode 100644 src/simplified/xf/port/idf-stm32/c-wrapper-functions.cpp create mode 100644 src/simplified/xf/port/idf-stm32/c-wrapper-functions.h create mode 100644 src/simplified/xf/port/idf-stm32/eventqueue.cpp create mode 100644 src/simplified/xf/port/idf-stm32/eventqueue.h create mode 100644 src/simplified/xf/port/idf-stm32/mutex.cpp create mode 100644 src/simplified/xf/port/idf-stm32/mutex.h create mode 100644 src/simplified/xf/port/idf-stm32/port-idf-stm32.dox create mode 100644 src/simplified/xf/port/idf-stm32/xf.cpp create mode 100644 src/simplified/xf/xf-core.pri create mode 100644 test-bench/common/config/xf-config.h create mode 100644 test-bench/doxygen/Doxyfile create mode 100644 test-bench/doxygen/images/state-machine01.png create mode 100644 test-bench/doxygen/images/state-machine02.png create mode 100644 test-bench/doxygen/images/state-machine03.png create mode 100644 test-bench/doxygen/images/state-machine04a.png create mode 100644 test-bench/doxygen/images/state-machine04b.png create mode 100644 test-bench/doxygen/images/state-machine05a.png create mode 100644 test-bench/doxygen/images/state-machine05b.png create mode 100644 test-bench/doxygen/images/test01-output.png create mode 100644 test-bench/doxygen/images/test02-output.png create mode 100644 test-bench/doxygen/images/test03-output.png create mode 100644 test-bench/doxygen/images/test04-output.png create mode 100644 test-bench/doxygen/images/test05-output.png create mode 100644 test-bench/doxygen/output/html/annotated.html create mode 100644 test-bench/doxygen/output/html/bc_s.png create mode 100644 test-bench/doxygen/output/html/bdwn.png create mode 100644 test-bench/doxygen/output/html/class_event_id-members.html create mode 100644 test-bench/doxygen/output/html/class_event_id.html create mode 100644 test-bench/doxygen/output/html/class_event_id__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_event_id__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_event_id__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine01-members.html create mode 100644 test-bench/doxygen/output/html/class_state_machine01.html create mode 100644 test-bench/doxygen/output/html/class_state_machine01__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine01__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine01__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine01__inherit__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine01__inherit__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine01__inherit__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine02-members.html create mode 100644 test-bench/doxygen/output/html/class_state_machine02.html create mode 100644 test-bench/doxygen/output/html/class_state_machine02__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine02__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine02__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine02__inherit__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine02__inherit__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine02__inherit__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine03-members.html create mode 100644 test-bench/doxygen/output/html/class_state_machine03.html create mode 100644 test-bench/doxygen/output/html/class_state_machine03__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine03__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine03__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine03__inherit__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine03__inherit__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine03__inherit__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine04a-members.html create mode 100644 test-bench/doxygen/output/html/class_state_machine04a.html create mode 100644 test-bench/doxygen/output/html/class_state_machine04a__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine04a__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine04a__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine04a__inherit__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine04a__inherit__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine04a__inherit__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine04b-members.html create mode 100644 test-bench/doxygen/output/html/class_state_machine04b.html create mode 100644 test-bench/doxygen/output/html/class_state_machine04b__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine04b__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine04b__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine04b__inherit__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine04b__inherit__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine04b__inherit__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine05a-members.html create mode 100644 test-bench/doxygen/output/html/class_state_machine05a.html create mode 100644 test-bench/doxygen/output/html/class_state_machine05a__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine05a__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine05a__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine05a__inherit__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine05a__inherit__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine05a__inherit__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine05b-members.html create mode 100644 test-bench/doxygen/output/html/class_state_machine05b.html create mode 100644 test-bench/doxygen/output/html/class_state_machine05b__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine05b__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine05b__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_state_machine05b__inherit__graph.map create mode 100644 test-bench/doxygen/output/html/class_state_machine05b__inherit__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_state_machine05b__inherit__graph.png create mode 100644 test-bench/doxygen/output/html/class_test_factory01-members.html create mode 100644 test-bench/doxygen/output/html/class_test_factory01.html create mode 100644 test-bench/doxygen/output/html/class_test_factory01__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_test_factory01__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_test_factory01__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_test_factory02-members.html create mode 100644 test-bench/doxygen/output/html/class_test_factory02.html create mode 100644 test-bench/doxygen/output/html/class_test_factory02__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_test_factory02__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_test_factory02__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_test_factory03-members.html create mode 100644 test-bench/doxygen/output/html/class_test_factory03.html create mode 100644 test-bench/doxygen/output/html/class_test_factory03__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_test_factory03__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_test_factory03__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_test_factory04-members.html create mode 100644 test-bench/doxygen/output/html/class_test_factory04.html create mode 100644 test-bench/doxygen/output/html/class_test_factory04__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_test_factory04__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_test_factory04__coll__graph.png create mode 100644 test-bench/doxygen/output/html/class_test_factory05-members.html create mode 100644 test-bench/doxygen/output/html/class_test_factory05.html create mode 100644 test-bench/doxygen/output/html/class_test_factory05__coll__graph.map create mode 100644 test-bench/doxygen/output/html/class_test_factory05__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/class_test_factory05__coll__graph.png create mode 100644 test-bench/doxygen/output/html/classes.html create mode 100644 test-bench/doxygen/output/html/classev_restart-members.html create mode 100644 test-bench/doxygen/output/html/classev_restart.html create mode 100644 test-bench/doxygen/output/html/classev_restart__coll__graph.map create mode 100644 test-bench/doxygen/output/html/classev_restart__coll__graph.md5 create mode 100644 test-bench/doxygen/output/html/classev_restart__coll__graph.png create mode 100644 test-bench/doxygen/output/html/classev_restart__inherit__graph.map create mode 100644 test-bench/doxygen/output/html/classev_restart__inherit__graph.md5 create mode 100644 test-bench/doxygen/output/html/classev_restart__inherit__graph.png create mode 100644 test-bench/doxygen/output/html/closed.png create mode 100644 test-bench/doxygen/output/html/dir_01e7b6ae91178a7c997c1c4436010e50.html create mode 100644 test-bench/doxygen/output/html/dir_07e57fa13dda5be206605960c5ff5ddc.html create mode 100644 test-bench/doxygen/output/html/dir_0c5256322a5840c1ba9cae6fcb43a359.html create mode 100644 test-bench/doxygen/output/html/dir_0c7b75c3cc30c0f120d0cb57a4916aa4.html create mode 100644 test-bench/doxygen/output/html/dir_0d6602adb30e779fae853ef4c55ad36c.html create mode 100644 test-bench/doxygen/output/html/dir_114381abbc0b4fdad67f5e28caf1dae2.html create mode 100644 test-bench/doxygen/output/html/dir_13bf8d714d14c32ee50a8846264d07f3.html create mode 100644 test-bench/doxygen/output/html/dir_165d86860ac47e817d278522cdfae0c4.html create mode 100644 test-bench/doxygen/output/html/dir_1d1c85343392ece9fcb5300d3e95c938.html create mode 100644 test-bench/doxygen/output/html/dir_1ecd39dbffd3739eb999f6fa15fc54cc.html create mode 100644 test-bench/doxygen/output/html/dir_27937d49cea61ec6a4c9f0d214006e7b.html create mode 100644 test-bench/doxygen/output/html/dir_2ccd07aab449b5a1f4441d25a30c4d48.html create mode 100644 test-bench/doxygen/output/html/dir_2f6d4c8555312b32c8876fcdf4145bf5.html create mode 100644 test-bench/doxygen/output/html/dir_3da1ed626ddca3e90f2f963fcb93d4ed.html create mode 100644 test-bench/doxygen/output/html/dir_3e0d2c868be6a3e5150a628fd2a00a9b.html create mode 100644 test-bench/doxygen/output/html/dir_4462b8b08d57a02b53d3d2c11bb70c59.html create mode 100644 test-bench/doxygen/output/html/dir_479e72fe9886e058476b6af5824bbd75.html create mode 100644 test-bench/doxygen/output/html/dir_5480240ac22aaf620a84d435fa96e6c8.html create mode 100644 test-bench/doxygen/output/html/dir_587df4dd05a2fa082596f4646329b4cb.html create mode 100644 test-bench/doxygen/output/html/dir_59a99d0ce0aa22d058591419e02d9190.html create mode 100644 test-bench/doxygen/output/html/dir_6e75a17059e2e7fdde7c9289c2ed92a7.html create mode 100644 test-bench/doxygen/output/html/dir_70e352ea8918c484a0738da18479b881.html create mode 100644 test-bench/doxygen/output/html/dir_7654115db021302968cf4533bab8bbfa.html create mode 100644 test-bench/doxygen/output/html/dir_7c7aec2e09033b4e32d2f5094befacd7.html create mode 100644 test-bench/doxygen/output/html/dir_7fec92c331b140b3870d22bea1284287.html create mode 100644 test-bench/doxygen/output/html/dir_8436da1b64bf70fd78ef43ec1f2a7c42.html create mode 100644 test-bench/doxygen/output/html/dir_86c421a244c79360fa8ff23dd1553824.html create mode 100644 test-bench/doxygen/output/html/dir_8aaaee2672d781899df21a5b30afe570.html create mode 100644 test-bench/doxygen/output/html/dir_92336582816fba6aa35c72434d1ab044.html create mode 100644 test-bench/doxygen/output/html/dir_a5f20161a8237470793879428ba91a0d.html create mode 100644 test-bench/doxygen/output/html/dir_bbdd353e8511b0a2067f6a1bb2218c8f.html create mode 100644 test-bench/doxygen/output/html/dir_bdd9a5d540de89e9fe90efdfc6973a4f.html create mode 100644 test-bench/doxygen/output/html/dir_c70a9dcd52a65ba068d21bc7d85e9b81.html create mode 100644 test-bench/doxygen/output/html/dir_d035a3ca03f1bae10cfebb17b24441a0.html create mode 100644 test-bench/doxygen/output/html/dir_d5777063fa38047b3eb00e2ee1038fc4.html create mode 100644 test-bench/doxygen/output/html/dir_df352c1893aaa592e0eb211b276915f1.html create mode 100644 test-bench/doxygen/output/html/dir_e1d09ab9c7e256f53962f9c3932ceca2.html create mode 100644 test-bench/doxygen/output/html/dir_e56bc661a253ac144891e54631a33d95.html create mode 100644 test-bench/doxygen/output/html/dir_ef5ec6f15bc519b773c1cd6cf32bc83d.html create mode 100644 test-bench/doxygen/output/html/dir_f10f7f754c84fa148fb6ed0571efeeec.html create mode 100644 test-bench/doxygen/output/html/doc.png create mode 100644 test-bench/doxygen/output/html/doxygen.css create mode 100644 test-bench/doxygen/output/html/doxygen.svg create mode 100644 test-bench/doxygen/output/html/dynsections.js create mode 100644 test-bench/doxygen/output/html/files.html create mode 100644 test-bench/doxygen/output/html/folderclosed.png create mode 100644 test-bench/doxygen/output/html/folderopen.png create mode 100644 test-bench/doxygen/output/html/functions.html create mode 100644 test-bench/doxygen/output/html/functions_enum.html create mode 100644 test-bench/doxygen/output/html/functions_eval.html create mode 100644 test-bench/doxygen/output/html/functions_func.html create mode 100644 test-bench/doxygen/output/html/functions_vars.html create mode 100644 test-bench/doxygen/output/html/graph_legend.html create mode 100644 test-bench/doxygen/output/html/graph_legend.md5 create mode 100644 test-bench/doxygen/output/html/graph_legend.png create mode 100644 test-bench/doxygen/output/html/group__test01.html create mode 100644 test-bench/doxygen/output/html/group__test02.html create mode 100644 test-bench/doxygen/output/html/group__test03.html create mode 100644 test-bench/doxygen/output/html/group__test04.html create mode 100644 test-bench/doxygen/output/html/group__test05.html create mode 100644 test-bench/doxygen/output/html/group__test__bench.html create mode 100644 test-bench/doxygen/output/html/hierarchy.html create mode 100644 test-bench/doxygen/output/html/index.html create mode 100644 test-bench/doxygen/output/html/inherit_graph_0.map create mode 100644 test-bench/doxygen/output/html/inherit_graph_0.md5 create mode 100644 test-bench/doxygen/output/html/inherit_graph_0.png create mode 100644 test-bench/doxygen/output/html/inherit_graph_1.map create mode 100644 test-bench/doxygen/output/html/inherit_graph_1.md5 create mode 100644 test-bench/doxygen/output/html/inherit_graph_1.png create mode 100644 test-bench/doxygen/output/html/inherit_graph_2.map create mode 100644 test-bench/doxygen/output/html/inherit_graph_2.md5 create mode 100644 test-bench/doxygen/output/html/inherit_graph_2.png create mode 100644 test-bench/doxygen/output/html/inherit_graph_3.map create mode 100644 test-bench/doxygen/output/html/inherit_graph_3.md5 create mode 100644 test-bench/doxygen/output/html/inherit_graph_3.png create mode 100644 test-bench/doxygen/output/html/inherit_graph_4.map create mode 100644 test-bench/doxygen/output/html/inherit_graph_4.md5 create mode 100644 test-bench/doxygen/output/html/inherit_graph_4.png create mode 100644 test-bench/doxygen/output/html/inherit_graph_5.map create mode 100644 test-bench/doxygen/output/html/inherit_graph_5.md5 create mode 100644 test-bench/doxygen/output/html/inherit_graph_5.png create mode 100644 test-bench/doxygen/output/html/inherit_graph_6.map create mode 100644 test-bench/doxygen/output/html/inherit_graph_6.md5 create mode 100644 test-bench/doxygen/output/html/inherit_graph_6.png create mode 100644 test-bench/doxygen/output/html/inherit_graph_7.map create mode 100644 test-bench/doxygen/output/html/inherit_graph_7.md5 create mode 100644 test-bench/doxygen/output/html/inherit_graph_7.png create mode 100644 test-bench/doxygen/output/html/inherits.html create mode 100644 test-bench/doxygen/output/html/jquery.js create mode 100644 test-bench/doxygen/output/html/menu.js create mode 100644 test-bench/doxygen/output/html/menudata.js create mode 100644 test-bench/doxygen/output/html/modules.html create mode 100644 test-bench/doxygen/output/html/nav_f.png create mode 100644 test-bench/doxygen/output/html/nav_g.png create mode 100644 test-bench/doxygen/output/html/nav_h.png create mode 100644 test-bench/doxygen/output/html/open.png create mode 100644 test-bench/doxygen/output/html/search/all_0.html create mode 100644 test-bench/doxygen/output/html/search/all_0.js create mode 100644 test-bench/doxygen/output/html/search/all_1.html create mode 100644 test-bench/doxygen/output/html/search/all_1.js create mode 100644 test-bench/doxygen/output/html/search/all_2.html create mode 100644 test-bench/doxygen/output/html/search/all_2.js create mode 100644 test-bench/doxygen/output/html/search/all_3.html create mode 100644 test-bench/doxygen/output/html/search/all_3.js create mode 100644 test-bench/doxygen/output/html/search/all_4.html create mode 100644 test-bench/doxygen/output/html/search/all_4.js create mode 100644 test-bench/doxygen/output/html/search/all_5.html create mode 100644 test-bench/doxygen/output/html/search/all_5.js create mode 100644 test-bench/doxygen/output/html/search/all_6.html create mode 100644 test-bench/doxygen/output/html/search/all_6.js create mode 100644 test-bench/doxygen/output/html/search/all_7.html create mode 100644 test-bench/doxygen/output/html/search/all_7.js create mode 100644 test-bench/doxygen/output/html/search/all_8.html create mode 100644 test-bench/doxygen/output/html/search/all_8.js create mode 100644 test-bench/doxygen/output/html/search/all_9.html create mode 100644 test-bench/doxygen/output/html/search/all_9.js create mode 100644 test-bench/doxygen/output/html/search/all_a.html create mode 100644 test-bench/doxygen/output/html/search/all_a.js create mode 100644 test-bench/doxygen/output/html/search/all_b.html create mode 100644 test-bench/doxygen/output/html/search/all_b.js create mode 100644 test-bench/doxygen/output/html/search/all_c.html create mode 100644 test-bench/doxygen/output/html/search/all_c.js create mode 100644 test-bench/doxygen/output/html/search/all_d.html create mode 100644 test-bench/doxygen/output/html/search/all_d.js create mode 100644 test-bench/doxygen/output/html/search/all_e.html create mode 100644 test-bench/doxygen/output/html/search/all_e.js create mode 100644 test-bench/doxygen/output/html/search/classes_0.html create mode 100644 test-bench/doxygen/output/html/search/classes_0.js create mode 100644 test-bench/doxygen/output/html/search/classes_1.html create mode 100644 test-bench/doxygen/output/html/search/classes_1.js create mode 100644 test-bench/doxygen/output/html/search/classes_2.html create mode 100644 test-bench/doxygen/output/html/search/classes_2.js create mode 100644 test-bench/doxygen/output/html/search/close.svg create mode 100644 test-bench/doxygen/output/html/search/enums_0.html create mode 100644 test-bench/doxygen/output/html/search/enums_0.js create mode 100644 test-bench/doxygen/output/html/search/enumvalues_0.html create mode 100644 test-bench/doxygen/output/html/search/enumvalues_0.js create mode 100644 test-bench/doxygen/output/html/search/enumvalues_1.html create mode 100644 test-bench/doxygen/output/html/search/enumvalues_1.js create mode 100644 test-bench/doxygen/output/html/search/enumvalues_2.html create mode 100644 test-bench/doxygen/output/html/search/enumvalues_2.js create mode 100644 test-bench/doxygen/output/html/search/enumvalues_3.html create mode 100644 test-bench/doxygen/output/html/search/enumvalues_3.js create mode 100644 test-bench/doxygen/output/html/search/functions_0.html create mode 100644 test-bench/doxygen/output/html/search/functions_0.js create mode 100644 test-bench/doxygen/output/html/search/functions_1.html create mode 100644 test-bench/doxygen/output/html/search/functions_1.js create mode 100644 test-bench/doxygen/output/html/search/functions_2.html create mode 100644 test-bench/doxygen/output/html/search/functions_2.js create mode 100644 test-bench/doxygen/output/html/search/functions_3.html create mode 100644 test-bench/doxygen/output/html/search/functions_3.js create mode 100644 test-bench/doxygen/output/html/search/functions_4.html create mode 100644 test-bench/doxygen/output/html/search/functions_4.js create mode 100644 test-bench/doxygen/output/html/search/functions_5.html create mode 100644 test-bench/doxygen/output/html/search/functions_5.js create mode 100644 test-bench/doxygen/output/html/search/functions_6.html create mode 100644 test-bench/doxygen/output/html/search/functions_6.js create mode 100644 test-bench/doxygen/output/html/search/functions_7.html create mode 100644 test-bench/doxygen/output/html/search/functions_7.js create mode 100644 test-bench/doxygen/output/html/search/functions_8.html create mode 100644 test-bench/doxygen/output/html/search/functions_8.js create mode 100644 test-bench/doxygen/output/html/search/groups_0.html create mode 100644 test-bench/doxygen/output/html/search/groups_0.js create mode 100644 test-bench/doxygen/output/html/search/groups_1.html create mode 100644 test-bench/doxygen/output/html/search/groups_1.js create mode 100644 test-bench/doxygen/output/html/search/groups_2.html create mode 100644 test-bench/doxygen/output/html/search/groups_2.js create mode 100644 test-bench/doxygen/output/html/search/groups_3.html create mode 100644 test-bench/doxygen/output/html/search/groups_3.js create mode 100644 test-bench/doxygen/output/html/search/mag_sel.svg create mode 100644 test-bench/doxygen/output/html/search/nomatches.html create mode 100644 test-bench/doxygen/output/html/search/pages_0.html create mode 100644 test-bench/doxygen/output/html/search/pages_0.js create mode 100644 test-bench/doxygen/output/html/search/search.css create mode 100644 test-bench/doxygen/output/html/search/search.js create mode 100644 test-bench/doxygen/output/html/search/search_l.png create mode 100644 test-bench/doxygen/output/html/search/search_m.png create mode 100644 test-bench/doxygen/output/html/search/search_r.png create mode 100644 test-bench/doxygen/output/html/search/searchdata.js create mode 100644 test-bench/doxygen/output/html/search/variables_0.html create mode 100644 test-bench/doxygen/output/html/search/variables_0.js create mode 100644 test-bench/doxygen/output/html/search/variables_1.html create mode 100644 test-bench/doxygen/output/html/search/variables_1.js create mode 100644 test-bench/doxygen/output/html/search/variables_2.html create mode 100644 test-bench/doxygen/output/html/search/variables_2.js create mode 100644 test-bench/doxygen/output/html/search/variables_3.html create mode 100644 test-bench/doxygen/output/html/search/variables_3.js create mode 100644 test-bench/doxygen/output/html/search/variables_4.html create mode 100644 test-bench/doxygen/output/html/search/variables_4.js create mode 100644 test-bench/doxygen/output/html/search/variables_5.html create mode 100644 test-bench/doxygen/output/html/search/variables_5.js create mode 100644 test-bench/doxygen/output/html/search/variables_6.html create mode 100644 test-bench/doxygen/output/html/search/variables_6.js create mode 100644 test-bench/doxygen/output/html/splitbar.png create mode 100644 test-bench/doxygen/output/html/state-machine01.png create mode 100644 test-bench/doxygen/output/html/state-machine02.png create mode 100644 test-bench/doxygen/output/html/state-machine03.png create mode 100644 test-bench/doxygen/output/html/state-machine04a.png create mode 100644 test-bench/doxygen/output/html/state-machine04b.png create mode 100644 test-bench/doxygen/output/html/state-machine05a.png create mode 100644 test-bench/doxygen/output/html/state-machine05b.png create mode 100644 test-bench/doxygen/output/html/statemachine01_8h_source.html create mode 100644 test-bench/doxygen/output/html/statemachine02_8h_source.html create mode 100644 test-bench/doxygen/output/html/statemachine03_8h_source.html create mode 100644 test-bench/doxygen/output/html/statemachine04a_8h_source.html create mode 100644 test-bench/doxygen/output/html/statemachine04b_8h_source.html create mode 100644 test-bench/doxygen/output/html/statemachine05a_8h_source.html create mode 100644 test-bench/doxygen/output/html/statemachine05b_8h_source.html create mode 100644 test-bench/doxygen/output/html/sync_off.png create mode 100644 test-bench/doxygen/output/html/sync_on.png create mode 100644 test-bench/doxygen/output/html/tab_a.png create mode 100644 test-bench/doxygen/output/html/tab_b.png create mode 100644 test-bench/doxygen/output/html/tab_h.png create mode 100644 test-bench/doxygen/output/html/tab_s.png create mode 100644 test-bench/doxygen/output/html/tabs.css create mode 100644 test-bench/doxygen/output/html/test01-output.png create mode 100644 test-bench/doxygen/output/html/test02-output.png create mode 100644 test-bench/doxygen/output/html/test03-output.png create mode 100644 test-bench/doxygen/output/html/test04-output.png create mode 100644 test-bench/doxygen/output/html/test05-output.png create mode 100644 test-bench/doxygen/output/html/test1_2ide-cubeide-test1-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test1_2ide-cubeide-test1-idf_2config_2uart-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test1_2ide-cubeide-test1-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test1_2ide-qtcreator-test1-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test1_2ide-qtcreator-test1-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test2_2ide-cubeide-test2-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test2_2ide-cubeide-test2-idf_2config_2uart-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test2_2ide-cubeide-test2-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test2_2ide-qtcreator-test2-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test2_2ide-qtcreator-test2-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test3_2ide-cubeide-test3-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test3_2ide-cubeide-test3-idf_2config_2uart-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test3_2ide-cubeide-test3-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test3_2ide-qtcreator-test3-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test3_2ide-qtcreator-test3-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test3_2src_2events_2eventids_8h_source.html create mode 100644 test-bench/doxygen/output/html/test3_2src_2events_2evrestart_8h_source.html create mode 100644 test-bench/doxygen/output/html/test4_2ide-cubeide-test4-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test4_2ide-cubeide-test4-idf_2config_2uart-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test4_2ide-cubeide-test4-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test4_2ide-qtcreator-test4-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test4_2ide-qtcreator-test4-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test4_2src_2events_2eventids_8h_source.html create mode 100644 test-bench/doxygen/output/html/test4_2src_2events_2evrestart_8h_source.html create mode 100644 test-bench/doxygen/output/html/test5_2ide-cubeide-test5-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test5_2ide-cubeide-test5-idf_2config_2uart-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test5_2ide-cubeide-test5-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test5_2ide-qtcreator-test5-idf_2config_2trace-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test5_2ide-qtcreator-test5-idf_2config_2xf-port-config_8h_source.html create mode 100644 test-bench/doxygen/output/html/test5_2src_2events_2eventids_8h_source.html create mode 100644 test-bench/doxygen/output/html/test5_2src_2events_2evrestart_8h_source.html create mode 100644 test-bench/doxygen/output/html/testfactory01_8h_source.html create mode 100644 test-bench/doxygen/output/html/testfactory02_8h_source.html create mode 100644 test-bench/doxygen/output/html/testfactory03_8h_source.html create mode 100644 test-bench/doxygen/output/html/testfactory04_8h_source.html create mode 100644 test-bench/doxygen/output/html/testfactory05_8h_source.html create mode 100644 test-bench/doxygen/output/html/xf-config_8h_source.html create mode 100644 test-bench/test-bench.dox create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qmake.stash create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/FILE.h.3E2187E08D11E118.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QCoreApplication.CB150BAD8FA2A80B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QDeadlineTimer.56FB999D4DA15614.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QDebug.B7169DF43D86707A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QMutex.C4F3B6562317065E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QMutexLocker.BF5B711248B4DAB3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QQueue.430BE93C00BFAA49.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QThread.42539ED810348D10.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QTime.3C7A731ECEB3F8CE.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QWaitCondition.30412FE5C62C84FC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/QtGlobal.038F2784F39D3F53.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/__FILE.h.1F308548AFF4D3EF.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/__fpos64_t.h.17D15E2B207C2A61.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/__fpos_t.h.963F544188B39C92.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/__locale_t.h.EFD2EEF88C7BC9DC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/__mbstate_t.h.93B945FF5E55D571.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/__sigset_t.h.B590AC3A1F93FF72.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.8F5BE66DE55CC5FD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.E9A43F84DD41DB78.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.20ED5CA0AC688A3C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.39AE23050B3DB93E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.7189E6BB01C6E3A5.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.9E8A5CBD997BBB89.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.B37F0213D6391980.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/alloca.h.B3C3404035C15EA6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.9E55EAC1E221125A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.394340D4AFD0BB3B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/array.D8DE39B4581540F3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.F44EF353D67C7E11.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.B330CAAEDB3A66ED.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.C96209A0696380EA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.F118387B313E4F7F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_futex.h.B4534E59D51B86E0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.5A61A192449D626F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_wide_counter.h.3E10DD82C6CABCC3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.EB55DB140AD857EC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.43921E32F71C0D03.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.6C881C0DF274EBDF.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.4C4ECAF92DDBC2FB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.79FB62151E4CF456.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/behavior.cpp.E2ED0F85324DC8A4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/behavior.h.9B22DBD8743C088A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/behavior.h.E2D0C97E5821CCE2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.363522A49CE606F6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.B17631E90F5F428F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.1DA6EDB73FBF3FD7.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/bit.80FBF70B2C290900.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/board.cpp.022032CFB2D4AA39.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/board.h.3AF0FAA5D7EB1012.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/byteswap.h.94242F347BA9D8AE.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.9E1F9886B0EDB4C5.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.E55AC3F6C0B0EAE8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.B6ED9DCB1BA4491F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.C8527DF9B4896FFB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.4F156C127E35B60F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cdefs.h.FC477E759ACAD3AA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.7575ACCDA80AA795.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.94769F13C7BDFB0D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.8E6A8A91F6A3D636.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.E17ABF0F77A5FD39.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.0E3FB845561D8965.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/clock_t.h.7C390066B7BA63AD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/clockid_t.h.7492A2D657E428F9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.AF48DC9BE999311F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.758C509CD2850D66.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.F0312976A7C56E2A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/condition_variable.DB8965592B180B31.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cookie_io_functions_t.h.71B144EB69678E45.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.C3A811FFDE72BE58.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cpu-set.h.CE4FA57DADE65D4C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.03EE885A6EB65E67.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.337D34E624285F88.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.131423F6DD978BF6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.4027945FEE8890E9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.3F00BA73B29BCEDF.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.2EBDFF9E335B5760.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.B529F9448D24C25D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.8C666B63C116FFB8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/customevent.cpp.16E87A2DC02A8ADC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/customevent.h.E72604B8D94D056E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.527D4E087DA71F76.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.F9C7F7987E4E3C70.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.430CE6EB8B5EC125.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.6B0FA042FC4FEEFD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/defaulttransition.cpp.214B07986A3AC493.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/defaulttransition.h.2067E42ED6FDEE4C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/dispatcher.cpp.47E03E37E40BA450.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/dispatcher.h.667C0736624754AE.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/dispatcher.h.6D4A6602C2C24AC6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.BB2A031CDFD4DEFA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.5B070FC951BB7AE4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/endian.h.631A0D66820E991A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/endian.h.86AC4579400E1F3C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/endianness.h.35701F8E0AA769D8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.B291FB0AC45EF1E5.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/errno-base.h.6103700F2A961E57.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.3B388C5618606E4B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.3C49467575AFE596.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.976E2F7993D5837D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.E95D16D80A970771.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.ED5CC3F31B3B565F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.1CFB57CD7FF2981D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/error_t.h.CB1EA22453434AEE.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/event.h.026E8F470CEE068B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/eventqueue.cpp.C8E7FC85B928787B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/eventqueue.h.C48F781F49DEB5D1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/eventqueue.h.C64924D087EF8934.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/eventstatus.h.6DC8E7F9656E1BD3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/exception.B5CDC8236E22180B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.4A781029051CAFC8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.2CB2BDBF392F88BB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.698CCE38E3D2C07B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.E29E8739239889C9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.139A83B6E72E10F0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/features-time64.h.C0452545283792D6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/features.h.839A4F3F7C9A4375.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/floatn-common.h.711B93EF2CFF9AAF.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/floatn.h.B07A09C8C93FD359.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/flt-eval-method.h.1762CEF65E1C8B85.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/fp-fast.h.91BD97E5074DD210.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/fp-logb.h.54140651B2DCB461.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.504CD7CE20367026.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/functional.027B3EC528A2F24E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.8E61F0A4AD90C580.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/future.B3A82DFE944536AB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.9DF5E781344B25C4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.C45A40F9A8A5C494.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.A7A93309FD11D428.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.08103F6A784432C4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.D8DA734A914DDEB6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.77B10DEC63904FFC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.8ECECB40777C1A44.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.7741C2498E025FCC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.D3C8252DD5324894.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.7D7CA0FC930432DB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/initialevent.cpp.F094CCC905A3F0E2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/initialevent.h.8354B0C4818EF288.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.E61E86F3E9F24619.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.DF257F4E308AA93B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.D421E5C4BB99E7AA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.618FEA8F4A176CBD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/iscanonical.h.1DF86AC8EA449C5B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.05C0EE6632710DAA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ledcontroller-config.h.2EE80FD94EF96D2A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ledcontroller.cpp.7816286C6D470FCA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ledcontroller.h.970D38625B4E96A1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.DCD30A693C7DAE25.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/libc-header-start.h.3C576D2EC44F3D51.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/libm-simd-decl-stubs.h.4E46FE7F7407C98C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/limits.4C150390A8477EBA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.232C8828345DA25C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.69A10F8A386658B6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.DCE8C15AD9D662BA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/list.FDA672B4B1AC51F7.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.C948B86A36ACB69C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/local_lim.h.6B4611C506FF1184.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.5F1EA2E91D0CD92F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.DC6A3C8413AF44F6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.0037C8A4EBF36E2B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.DC599615D616917E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/locale_t.h.35126649C9580C9E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.CB2F7180B0799E22.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/long-double.h.8E4A01ABF34B6FCF.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.95974BB11D546F6F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/map.65EA531CB9793EA9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/math-vector.h.26BD74300CD67C77.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.01C27C5330238AC3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/mathcalls-helper-functions.h.451E844800DAE198.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/mathcalls-narrow.h.6E4F1E49E4D46D1C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/mathcalls.h.6E280093246D7E22.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/mbstate_t.h.3528BDA0AC14581F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/memory.D8CFFD50CBC6CA29.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.AFF80986FB2F220A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.5A390239368A3971.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.8E894E7C8E2C68A1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/mutex.4C8B9890DFA5E408.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/mutex.cpp.3ABFE1CF65E94BE1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/mutex.h.4169A01CEAA7702C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/mutex.h.9AFE260CB14B1AC0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.31FE92010345A70D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/new.CD6F59707B4E1CB0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.F6CE1C98E947F018.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.004789CC082EB672.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.705D60D711E06D25.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.815200D9C505BB49.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/optional.D677445B1C959CCA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.F9B7BF7B578BD0F2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.DD9A679D51F6983E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.0C44065163342B3D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.B99E362A26021ADA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.D6ED401CAF7CDCD2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/posix1_lim.h.65E618CC9AAADE80.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/posix2_lim.h.703AAEDC4EF23754.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.07D2D51973F52512.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.8825642DC6EFAF17.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.28F53B80F1142E74.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.BA62F334A4AE6D48.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_stack_min-dynamic.h.1EABA1374AAD1427.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/pthreadtypes-arch.h.0A2981EA8E2EBE73.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/pthreadtypes.h.470AFE1CFB7B64FD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.181EAD7C3090D08B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.0F0575928166BA11.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F7CFF99F8E0B7830.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.20DF09AD4DFC82FA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.A299A43F83D36F97.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.A356470A5C37C8BF.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.356A3AF5B53F88D2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.8BFB1352C4EDB6B9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.7F41528DEBC44909.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.79148BD6D53FE3BC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.7F5E84AAABBD589C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.CF40CA459BB24EE2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.1CEF0909AEC2E49A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.F13443A77B6B1E0D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.A5F1E4C1498BA2C0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.6DAFBA2420610115.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.F2E51FAD04BB8B0A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.55E17331827ABB6A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.D49B2F62EE533CE4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.B65A589F7F119B71.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.8B1A9EE4B04C37A1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.82F65D16BD0DFEC6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.D805EC108D83738E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.06C2DE316956FFD8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1975543D23297CC0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.65539DF62ACFF804.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.8D906FACE19F741C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.B1FE780D789FE5CC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.21202ED83997E625.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.7269A02E289F3EB7.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.23317C64EEC18A11.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.883786CEFC97228B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.8EEEFE6F0563D86A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.6E3F085A42CF5003.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.2C6DE27E28ABF30C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.89E52550045581F6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.CD9C81B862F02AC3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.0FC4984122C4170E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.0DDF6879355B09C4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.816512D6C51BE8A0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.1042B5152440DBDD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.B52796A37C207EC4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.B591153171FA8910.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.696AB646CA4583F9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.B5968A60A7AA2A94.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.F625B1C70F945541.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.E7031038B8467FA3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.EE2A97B32E9ACF79.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.700729F95CC61F18.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.339EB1908D738780.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.85EBE1363767C3AC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.FDB904D3A8F45B57.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.F371F7C98D79C7B8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.42A9ED7407B028CA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.C9C43B6ACE41FA8D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.8FD1D9409E5F085A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.E39E8E9D7E34701B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.B76178CA5AC3E215.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.655185CD11CE7F68.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.231B912E3BD37FBB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qmutex.h.CC010A1C4A5C15E8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.4CE2B995B9FEF8CC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.76250FF61761D609.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.A9FD425BA65C04FB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.0B7834879FE891FC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.F142E7DD4F9E754A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.1732B8DFD5CAC339.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.85DA8EE72F2E50B1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.7C60B8B8EC71882E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.94408B7DB3D1722E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.057A8F16B51F4AF3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.F2B3A37B57C3E3BD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qqueue.h.CC7D6EA14FCD2985.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.5CC10E7CC8A7B1E1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.FA3580B48CA3B960.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.5B92F0E4384C064E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.88D2FE4524DAFB65.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.1237F1472C990ADB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.E0E8239C582AA519.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.67F8D82297BCC477.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.D3CFAC1851C888E9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.530BB87737AE3778.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.695C831B8313C915.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.A582614FC22695DF.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.C1D09E56ECCA47E3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.682419BCA33BF8A6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.590A2FE7DF734825.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.C54E59CA9EF3B8F0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.B4A690AC7E2E8E19.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.1EA50CEEEDB61A10.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.13E3D3CF5DECD9B5.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.E93DE4203A09446F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.D24AA80B64379BA9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.11605120E0BFD255.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.435FB6BD8FFC00F7.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.81827B64FB5062F3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.F15638A42A3802A8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.8D0D6EDB0621E6DA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.5E6B8F063E72495D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.4ACCA4058ABD5A3F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.785128F50294B1EE.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qthread.h.56F3D7886FF10CAD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.4FD00192534F8CD9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.2D0E09DD30293823.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.F2057E1301FA48BE.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.53C25C338B429667.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtsan_impl.h.ABECD6ABF0F80180.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.CB7E050A0841130D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.E9064C2EED8F68F4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.90F953EF09824258.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.412215DB49C5853C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.E568B40189BF73C3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.74E2942729F2A5FD.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.531AFBAF3BD54BA5.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.84CB479FE7326F0D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.078789B5E05EDBFA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.B10C4CB94EDB0ED7.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qwaitcondition.h.92A2270EF8548346.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.15B9F421D36FC01F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.ED390E9E7725CC2C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.EB9327D7D8EB4617.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.7AB6995A1D5174DC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.AD9D37D30FE1E39E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/sched.h.41432389CF465E96.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/sched.h.5B833830F429325A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/select.h.72501F4A5B0BE6E1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/select.h.D0F5DD6C4E2CDCA8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/setjmp.h.E4471199DFA1C814.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.C6BAE9E0392607ED.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.7B833B6314FBB991.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.A3225CC64509B40D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/sigset_t.h.F3117B743F40D72E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/single_threaded.h.5A32171EF01685F7.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.91DA57E6F6153D4C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.929317C81431E44C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/statemachine01.cpp.A5759FFC3EEAC5B8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/statemachine01.h.826B8BD0D4D0555B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.D50BF0F12A5B7B30.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.365ABBA69ADB2F65.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/std_mutex.h.F428AE421933256B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/std_thread.h.09032D1BAD85011D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.58D35FD2C21E1780.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.C8C120BAEB3F950B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdc-predef.h.F7F17074D9579F84.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.C71BCFE6B12D3935.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.92443F8925C3CB50.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdint-intn.h.C0BEF0D1BDD5E52D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdint-uintn.h.64979324EF78275C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.4208DA0E8AD4B387.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.BCD27A3D2AA678A1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.39AA179546A5CA11.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_lim.h.B167440C64CC714B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib-float.h.E41DC942B773DF80.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.91784341E5DAF6D4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.9500795D2AE691D2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.0879FD20E2A9BB3E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.2A6DCD4F39B2AA23.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.5CF6B01A889B6A18.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.3235902743E6BB6E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.74A8F29B1B744029.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.17169D17B478C780.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.8BE15FF010590915.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.5B1FC7644CA6FE77.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.BF84D8EA8A7E650C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.FE782523B928055E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.A81E92CEDF3FE8A9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.27487CFDE735540D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.6BFB9434F5E8FB64.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.A4152C84BBE11D16.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.49F6D1656FF4ED0D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.EB61664F45EBA3F8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.11E137584CE4251D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.ED6799A823ED3560.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.1A1B8C298BBBB58F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.111C2F0358FAB00F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.FAAF82E48922C3E3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.D11353068997DD03.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.26ADBBEC97C93BFF.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.1C2B09EEC066821A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/string.2039B03F613F2011.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.891400410E4BA387.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.44E8E90BE4785EA9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.75142BD5C438188B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.3A9D6DECE9E667E4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.FF9C2C6B2961999D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/strings.h.B9CFF053B196D313.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct_FILE.h.3C39AA7E06D50F33.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct___jmp_buf_tag.h.619C6D55F6FFBE81.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct_itimerspec.h.09A351BC2DEF8BA8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct_mutex.h.054124744A611CC5.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct_rwlock.h.9B7732E75E3E6516.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct_sched_param.h.FFE0A2524F67FC0B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct_timespec.h.BC44EC73430A5653.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct_timeval.h.E132F6DFA1F762C2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/struct_tm.h.A6719386D6AD6D8B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stubs-64.h.91EB6F19F752636D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/stubs.h.DA5B2E8FCDA2A8C1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.F96BCE55D3FF7940.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/testfactory01.cpp.8989D09A641C345D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/testfactory01.h.EA302AADCBC150E6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/thread-shared-types.h.19DFAF154D3C29B6.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.406C037FEAE97D8D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.7C742BEFB90662A9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/time64.h.48E2D2FAC2489DCA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/time_t.h.297EB154468449E7.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/timeout.cpp.2530D45FF6E233F0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/timeout.h.D4885D7768028A61.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/timeoutmanager.cpp.0BBAF3B83918DE0B.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/timeoutmanager.h.3F04A253EE7DC47A.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/timeoutmanager.h.6F96405EF38B1DC4.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/timer_t.h.7DD45E92A04DFD5D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/timesize.h.6D2BD1647A238841.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/timex.h.4CF7EC2A5528EC9F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/trace-config.h.74BCDF859E025607.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/trace.cpp.760D1A2F93ADE1A2.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/trace.h.67ED6345D165411E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.5E2A19BCF5ED5A04.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.1DAE4F5FA15F497C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.27424107891FDD0F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.A2B5E109AB9576CE.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.06DCDF73E41B4821.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.253C91793AF0A32F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/typesizes.h.1882C141143B42BB.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/uintn-identity.h.FF6BE711A1FA279F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/uio_lim.h.1487398225E78DB0.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.4976207E1C76D9F1.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/unique_lock.h.E56CC961704D804C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.CA4AF0B8829DF930.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.541F2B51771579F3.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.E00B35C2FB24F9CA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.FDB359614F7046E8.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/utility.0D691E027DDC09AC.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/variant.9E91F50EDF95FF1E.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/vector.18FAF943785F099C.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.37916E8ACE7E4B6F.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/version.8285EBBC34DD96EA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/waitflags.h.6A14A881B2C30CDA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/waitstatus.h.26E204608D673770.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.A65FEA87E595D0B5.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.D6524CF0B11BAA59.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/wint_t.h.8EAC1E3F97948DA7.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/wordsize.h.BCE926659141151D.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/xf-config.h.FC35DBB29E8AEC79.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/xf-port-config.h.D5A9096ACE4A8E16.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/xf.cpp.83C36CF2F59119C9.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/xf.h.E2DAACAFDFC96408.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/.cache/clangd/index/xopen_lim.h.E50A8BD3474841CA.idx create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/.qtc_clangd/compile_commands.json create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/Makefile create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/behavior.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/board.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/customevent.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/defaulttransition.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/dispatcher.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/eventqueue.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/initialevent.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/ledcontroller.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/main.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/mutex.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/statemachine01.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/testfactory01.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/timeout.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/timeoutmanager.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/trace.o create mode 100644 test-bench/test1/build-test1-idf-Desktop_Qt_6_5_1_GCC_64bit-Debug/xf.o create mode 100644 test-bench/test1/ide-cubeide-test1-idf/.cproject create mode 100644 test-bench/test1/ide-cubeide-test1-idf/.cproject_org create mode 100644 test-bench/test1/ide-cubeide-test1-idf/.project create mode 100644 test-bench/test1/ide-cubeide-test1-idf/.project_org create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Core/Inc/main.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Core/Inc/stm32f7xx_hal_conf.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Core/Inc/stm32f7xx_it.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Core/Src/main.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Core/Src/stm32f7xx_hal_msp.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Core/Src/stm32f7xx_it.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Core/Src/system_stm32f7xx.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f746xx.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Device/ST/STM32F7xx/LICENSE.txt create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Device/ST/STM32F7xx/License.md create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/cmsis_armcc.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/cmsis_armclang.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/cmsis_compiler.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/cmsis_gcc.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/cmsis_iccarm.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/cmsis_version.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_armv8mbl.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_armv8mml.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_cm0.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_cm0plus.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_cm1.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_cm23.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_cm3.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_cm33.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_cm4.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_cm7.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_sc000.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/core_sc300.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/mpu_armv7.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/mpu_armv8.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/Include/tz_context.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/CMSIS/LICENSE.txt create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/LICENSE.txt create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/License.md create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart_ex.c create mode 100644 test-bench/test1/ide-cubeide-test1-idf/STM32F746NGHx_FLASH.ld create mode 100644 test-bench/test1/ide-cubeide-test1-idf/config/trace-config.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/config/uart-config.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/config/xf-port-config.h create mode 100644 test-bench/test1/ide-cubeide-test1-idf/ide-cubeide-test1-idf.ioc create mode 100644 test-bench/test1/ide-cubeide-test1-idf/launch/ide-cubeide-test1-idf.launch create mode 100644 test-bench/test1/ide-cubeide-test1-idf/startup/startup_stm32f746xx.s create mode 100644 test-bench/test1/ide-qtcreator-test1-idf/common.pri create mode 100644 test-bench/test1/ide-qtcreator-test1-idf/config/trace-config.h create mode 100644 test-bench/test1/ide-qtcreator-test1-idf/config/xf-port-config.h create mode 100644 test-bench/test1/ide-qtcreator-test1-idf/test1-idf.pro create mode 100644 test-bench/test1/ide-qtcreator-test1-idf/test1-idf.pro.user create mode 100644 test-bench/test1/src/app/statemachine01.cpp create mode 100644 test-bench/test1/src/app/statemachine01.h create mode 100644 test-bench/test1/src/app/testfactory01.cpp create mode 100644 test-bench/test1/src/app/testfactory01.h create mode 100644 test-bench/test1/src/main.cpp create mode 100644 test-bench/test2/ide-cubeide-test2-idf/.cproject create mode 100644 test-bench/test2/ide-cubeide-test2-idf/.cproject_org create mode 100644 test-bench/test2/ide-cubeide-test2-idf/.project create mode 100644 test-bench/test2/ide-cubeide-test2-idf/.project_org create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Core/Inc/main.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Core/Inc/stm32f7xx_hal_conf.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Core/Inc/stm32f7xx_it.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Core/Src/main.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Core/Src/stm32f7xx_hal_msp.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Core/Src/stm32f7xx_it.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Core/Src/system_stm32f7xx.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f746xx.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Device/ST/STM32F7xx/LICENSE.txt create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Device/ST/STM32F7xx/License.md create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/cmsis_armcc.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/cmsis_armclang.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/cmsis_compiler.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/cmsis_gcc.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/cmsis_iccarm.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/cmsis_version.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_armv8mbl.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_armv8mml.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_cm0.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_cm0plus.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_cm1.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_cm23.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_cm3.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_cm33.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_cm4.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_cm7.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_sc000.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/core_sc300.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/mpu_armv7.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/mpu_armv8.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/Include/tz_context.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/CMSIS/LICENSE.txt create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/LICENSE.txt create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/License.md create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart_ex.c create mode 100644 test-bench/test2/ide-cubeide-test2-idf/STM32F746NGHx_FLASH.ld create mode 100644 test-bench/test2/ide-cubeide-test2-idf/config/trace-config.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/config/uart-config.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/config/xf-port-config.h create mode 100644 test-bench/test2/ide-cubeide-test2-idf/ide-cubeide-test2-idf.ioc create mode 100644 test-bench/test2/ide-cubeide-test2-idf/launch/ide-cubeide-test2-idf.launch create mode 100644 test-bench/test2/ide-cubeide-test2-idf/startup/startup_stm32f746xx.s create mode 100644 test-bench/test2/ide-qtcreator-test2-idf/common.pri create mode 100644 test-bench/test2/ide-qtcreator-test2-idf/config/trace-config.h create mode 100644 test-bench/test2/ide-qtcreator-test2-idf/config/xf-port-config.h create mode 100644 test-bench/test2/ide-qtcreator-test2-idf/test2-idf.pro create mode 100644 test-bench/test2/src/app/statemachine02.cpp create mode 100644 test-bench/test2/src/app/statemachine02.h create mode 100644 test-bench/test2/src/app/testfactory02.cpp create mode 100644 test-bench/test2/src/app/testfactory02.h create mode 100644 test-bench/test2/src/main.cpp create mode 100644 test-bench/test3/ide-cubeide-test3-idf/.cproject create mode 100644 test-bench/test3/ide-cubeide-test3-idf/.cproject_org create mode 100644 test-bench/test3/ide-cubeide-test3-idf/.gitignore create mode 100644 test-bench/test3/ide-cubeide-test3-idf/.project create mode 100644 test-bench/test3/ide-cubeide-test3-idf/.project_org create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Core/Inc/main.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Core/Inc/stm32f7xx_hal_conf.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Core/Inc/stm32f7xx_it.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Core/Src/main.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Core/Src/stm32f7xx_hal_msp.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Core/Src/stm32f7xx_it.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Core/Src/system_stm32f7xx.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f746xx.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Device/ST/STM32F7xx/LICENSE.txt create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Device/ST/STM32F7xx/License.md create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/cmsis_armcc.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/cmsis_armclang.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/cmsis_compiler.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/cmsis_gcc.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/cmsis_iccarm.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/cmsis_version.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_armv8mbl.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_armv8mml.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_cm0.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_cm0plus.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_cm1.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_cm23.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_cm3.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_cm33.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_cm4.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_cm7.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_sc000.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/core_sc300.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/mpu_armv7.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/mpu_armv8.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/Include/tz_context.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/CMSIS/LICENSE.txt create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/LICENSE.txt create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/License.md create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart_ex.c create mode 100644 test-bench/test3/ide-cubeide-test3-idf/STM32F746NGHx_FLASH.ld create mode 100644 test-bench/test3/ide-cubeide-test3-idf/config/trace-config.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/config/uart-config.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/config/xf-port-config.h create mode 100644 test-bench/test3/ide-cubeide-test3-idf/ide-cubeide-test3-idf.ioc create mode 100644 test-bench/test3/ide-cubeide-test3-idf/launch/ide-cubeide-test3-idf.launch create mode 100644 test-bench/test3/ide-cubeide-test3-idf/startup/startup_stm32f746xx.s create mode 100644 test-bench/test3/ide-qtcreator-test3-idf/common.pri create mode 100644 test-bench/test3/ide-qtcreator-test3-idf/config/trace-config.h create mode 100644 test-bench/test3/ide-qtcreator-test3-idf/config/xf-port-config.h create mode 100644 test-bench/test3/ide-qtcreator-test3-idf/test3-idf.pro create mode 100644 test-bench/test3/src/app/statemachine03.cpp create mode 100644 test-bench/test3/src/app/statemachine03.h create mode 100644 test-bench/test3/src/app/testfactory03.cpp create mode 100644 test-bench/test3/src/app/testfactory03.h create mode 100644 test-bench/test3/src/events/eventids.h create mode 100644 test-bench/test3/src/events/evrestart.cpp create mode 100644 test-bench/test3/src/events/evrestart.h create mode 100644 test-bench/test3/src/main.cpp create mode 100644 test-bench/test4/ide-cubeide-test4-idf/.cproject create mode 100644 test-bench/test4/ide-cubeide-test4-idf/.cproject_org create mode 100644 test-bench/test4/ide-cubeide-test4-idf/.gitignore create mode 100644 test-bench/test4/ide-cubeide-test4-idf/.project create mode 100644 test-bench/test4/ide-cubeide-test4-idf/.project_org create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Core/Inc/main.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Core/Inc/stm32f7xx_hal_conf.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Core/Inc/stm32f7xx_it.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Core/Src/main.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Core/Src/stm32f7xx_hal_msp.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Core/Src/stm32f7xx_it.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Core/Src/system_stm32f7xx.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f746xx.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Device/ST/STM32F7xx/LICENSE.txt create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Device/ST/STM32F7xx/License.md create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/cmsis_armcc.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/cmsis_armclang.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/cmsis_compiler.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/cmsis_gcc.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/cmsis_iccarm.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/cmsis_version.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_armv8mbl.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_armv8mml.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_cm0.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_cm0plus.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_cm1.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_cm23.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_cm3.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_cm33.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_cm4.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_cm7.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_sc000.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/core_sc300.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/mpu_armv7.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/mpu_armv8.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/Include/tz_context.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/CMSIS/LICENSE.txt create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/LICENSE.txt create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/License.md create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart_ex.c create mode 100644 test-bench/test4/ide-cubeide-test4-idf/STM32F746NGHx_FLASH.ld create mode 100644 test-bench/test4/ide-cubeide-test4-idf/config/trace-config.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/config/uart-config.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/config/xf-port-config.h create mode 100644 test-bench/test4/ide-cubeide-test4-idf/ide-cubeide-test4-idf.ioc create mode 100644 test-bench/test4/ide-cubeide-test4-idf/launch/ide-cubeide-test4-idf.launch create mode 100644 test-bench/test4/ide-cubeide-test4-idf/startup/startup_stm32f746nghx.s create mode 100644 test-bench/test4/ide-qtcreator-test4-idf/common.pri create mode 100644 test-bench/test4/ide-qtcreator-test4-idf/config/trace-config.h create mode 100644 test-bench/test4/ide-qtcreator-test4-idf/config/xf-port-config.h create mode 100644 test-bench/test4/ide-qtcreator-test4-idf/test4-idf.pro create mode 100644 test-bench/test4/src/app/statemachine04a.cpp create mode 100644 test-bench/test4/src/app/statemachine04a.h create mode 100644 test-bench/test4/src/app/statemachine04b.cpp create mode 100644 test-bench/test4/src/app/statemachine04b.h create mode 100644 test-bench/test4/src/app/testfactory04.cpp create mode 100644 test-bench/test4/src/app/testfactory04.h create mode 100644 test-bench/test4/src/events/eventids.h create mode 100644 test-bench/test4/src/events/evrestart.cpp create mode 100644 test-bench/test4/src/events/evrestart.h create mode 100644 test-bench/test4/src/main.cpp create mode 100644 test-bench/test5/ide-cubeide-test5-idf/.cproject create mode 100644 test-bench/test5/ide-cubeide-test5-idf/.cproject_org create mode 100644 test-bench/test5/ide-cubeide-test5-idf/.gitignore create mode 100644 test-bench/test5/ide-cubeide-test5-idf/.project create mode 100644 test-bench/test5/ide-cubeide-test5-idf/.project_org create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Core/Inc/main.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Core/Inc/stm32f7xx_hal_conf.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Core/Inc/stm32f7xx_it.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Core/Src/main.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Core/Src/stm32f7xx_hal_msp.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Core/Src/stm32f7xx_it.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Core/Src/system_stm32f7xx.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f746xx.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Device/ST/STM32F7xx/LICENSE.txt create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Device/ST/STM32F7xx/License.md create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/cmsis_armcc.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/cmsis_armclang.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/cmsis_compiler.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/cmsis_gcc.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/cmsis_iccarm.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/cmsis_version.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_armv8mbl.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_armv8mml.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_cm0.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_cm0plus.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_cm1.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_cm23.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_cm3.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_cm33.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_cm4.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_cm7.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_sc000.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/core_sc300.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/mpu_armv7.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/mpu_armv8.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/Include/tz_context.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/CMSIS/LICENSE.txt create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/LICENSE.txt create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/License.md create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart_ex.c create mode 100644 test-bench/test5/ide-cubeide-test5-idf/STM32F746NGHx_FLASH.ld create mode 100644 test-bench/test5/ide-cubeide-test5-idf/config/trace-config.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/config/uart-config.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/config/xf-port-config.h create mode 100644 test-bench/test5/ide-cubeide-test5-idf/ide-cubeide-test5-idf.ioc create mode 100644 test-bench/test5/ide-cubeide-test5-idf/launch/ide-cubeide-test5-idf.launch create mode 100644 test-bench/test5/ide-cubeide-test5-idf/startup/startup_stm32f746xx.s create mode 100644 test-bench/test5/ide-qtcreator-test5-idf/common.pri create mode 100644 test-bench/test5/ide-qtcreator-test5-idf/config/trace-config.h create mode 100644 test-bench/test5/ide-qtcreator-test5-idf/config/xf-port-config.h create mode 100644 test-bench/test5/ide-qtcreator-test5-idf/test5-idf.pro create mode 100644 test-bench/test5/src/app/statemachine05a.cpp create mode 100644 test-bench/test5/src/app/statemachine05a.h create mode 100644 test-bench/test5/src/app/statemachine05b.cpp create mode 100644 test-bench/test5/src/app/statemachine05b.h create mode 100644 test-bench/test5/src/app/testfactory05.cpp create mode 100644 test-bench/test5/src/app/testfactory05.h create mode 100644 test-bench/test5/src/events/eventids.h create mode 100644 test-bench/test5/src/events/evrestart.cpp create mode 100644 test-bench/test5/src/events/evrestart.h create mode 100644 test-bench/test5/src/main.cpp diff --git a/documentation.html b/documentation.html new file mode 100644 index 0000000..df6331c --- /dev/null +++ b/documentation.html @@ -0,0 +1,13 @@ + + +A web page that points a browser to a different page after 2 seconds + + + + +If your browser doesn't automatically go there within a few seconds, +you may want to go to +the destination +manually. + + diff --git a/src/mdw/trace/config/trace-config.h b/src/mdw/trace/config/trace-config.h new file mode 100644 index 0000000..771859f --- /dev/null +++ b/src/mdw/trace/config/trace-config.h @@ -0,0 +1,19 @@ +#ifndef TRACE_CONFIG_H +#define TRACE_CONFIG_H + +/** + * Trace config example. Copy this file into the 'config' folder + * of your project and do your configuration there. + * Be sure to set up your include path such that the config file in + * your project is seen first. + * + * Do not perform changes in this file at this location. It may + * cause other projects to no more build! + */ + +#warning "No project specific trace configuration found! Taking default configuration!" + +#define USE_TRACE_EXAMPLE 0 +#define TRACE_ADD_CRLF_SEQU 0 + +#endif // TRACE_CONFIG_H diff --git a/src/mdw/trace/doxygen/Doxyfile b/src/mdw/trace/doxygen/Doxyfile new file mode 100644 index 0000000..b1ec66e --- /dev/null +++ b/src/mdw/trace/doxygen/Doxyfile @@ -0,0 +1,2667 @@ +# Doxyfile 1.9.2 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = Trace + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 3.3 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = output + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# By default Python docstrings are displayed as preformatted text and doxygen's +# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the +# doxygen's special commands can be used and the contents of the docstring +# documentation blocks is shown as doxygen documentation. +# The default value is: YES. + +PYTHON_DOCSTRING = YES + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:^^" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". Note that you cannot put \n's in the value part of an alias +# to insert newlines (in the resulting output). You can put ^^ in the value part +# of an alias to insert a newline as if a physical newline was in the original +# file. When you need a literal { or } or , in the value part of an alias you +# have to escape them by means of a backslash (\), this can lead to conflicts +# with the commands \{ and \} for these it is advised to use the version @{ and +# @} or use a double escape (\\{ and \\}) + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, +# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use +# during processing. When set to 0 doxygen will based this on the number of +# cores available in the system. You can set it explicitly to a value larger +# than 0 to get more control over the balance between CPU load and processing +# speed. At this moment only the input processing can be done using multiple +# threads. Since this is still an experimental feature the default is set to 1, +# which effectively disables parallel processing. Please report any issues you +# encounter. Generating dot graphs in parallel is controlled by the +# DOT_NUM_THREADS setting. +# Minimum value: 0, maximum value: 32, default value: 1. + +NUM_PROC_THREADS = 1 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If this flag is set to YES, the name of an unnamed parameter in a declaration +# will be determined by the corresponding definition. By default unnamed +# parameters remain unnamed in the output. +# The default value is: YES. + +RESOLVE_UNNAMED_PARAMS = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# With the correct setting of option CASE_SENSE_NAMES doxygen will better be +# able to match the capabilities of the underlying filesystem. In case the +# filesystem is case sensitive (i.e. it supports files in the same directory +# whose names only differ in casing), the option must be set to YES to properly +# deal with such files in case they appear in the input. For filesystems that +# are not case sensitive the option should be be set to NO to properly deal with +# output files written for symbols that only differ in casing, such as for two +# classes, one named CLASS and the other named Class, and to also support +# references to files without having to specify the exact matching casing. On +# Windows (including Cygwin) and MacOS, users should typically set this option +# to NO, whereas on Linux or other Unix flavors it should typically be set to +# YES. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class +# will show which file needs to be included to use the class. +# The default value is: YES. + +SHOW_HEADERFILE = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = DOC_WITH_TESTBENCH + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. See also section "Changing the +# layout of pages" for information. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as documenting some parameters in +# a documented function twice, or documenting parameters that don't exist or +# using markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete +# function parameter documentation. If set to NO, doxygen will accept that some +# parameters have no documentation without warning. +# The default value is: YES. + +WARN_IF_INCOMPLETE_DOC = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong parameter +# documentation, but not about the absence of documentation. If EXTRACT_ALL is +# set to YES then this flag will automatically be disabled. See also +# WARN_IF_INCOMPLETE_DOC +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS +# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but +# at the end of the doxygen process doxygen will return with a non-zero status. +# Possible values are: NO, YES and FAIL_ON_WARNINGS. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = ../ + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: +# https://www.gnu.org/software/libiconv/) for the list of possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, +# *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C +# comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, +# *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.d \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.idl \ + *.odl \ + *.cs \ + *.php \ + *.php3 \ + *.inc \ + *.m \ + *.mm \ + *.dox \ + *.py \ + *.f90 \ + *.f \ + *.vhd \ + *.vhdl + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = .svn + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = ../examples + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: +# http://clang.llvm.org/) for more accurate parsing at the cost of reduced +# performance. This can be particularly helpful with template rich C++ code for +# which doxygen's built-in parser lacks the necessary type information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If the CLANG_ASSISTED_PARSING tag is set to YES and the CLANG_ADD_INC_PATHS +# tag is set to YES then doxygen will add the directory of each input to the +# include path. +# The default value is: YES. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_ADD_INC_PATHS = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +# If clang assisted parsing is enabled you can provide the clang parser with the +# path to the directory containing a file called compile_commands.json. This +# file is the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the +# options used when the source files were built. This is equivalent to +# specifying the -p option to a clang tool, such as clang-check. These options +# will then be passed to the parser. Any options specified with CLANG_OPTIONS +# will be added as well. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. + +CLANG_DATABASE_PATH = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a color-wheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use gray-scales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: +# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To +# create a documentation set, doxygen will generate a Makefile in the HTML +# output directory. Running make will produce the docset in that directory and +# running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# on Windows. In the beginning of 2021 Microsoft took the original page, with +# a.o. the download links, offline the HTML help workshop was already many years +# in maintenance mode). You can download the HTML help workshop from the web +# archives at Installation executable (see: +# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo +# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the main .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location (absolute path +# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to +# run qhelpgenerator on the generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine tune the look of the index (see "Fine-tuning the output"). As an +# example, the default style sheet generated by doxygen has an example that +# shows how to put an image at the root of the tree instead of the PROJECT_NAME. +# Since the tree basically has the same information as the tab index, you could +# consider setting DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the +# FULL_SIDEBAR option determines if the side bar is limited to only the treeview +# area (value NO) or if it should extend to the full height of the window (value +# YES). Setting this to YES gives a layout similar to +# https://docs.readthedocs.io with more room for contents, but less room for the +# project logo, title, and description. If either GENERATOR_TREEVIEW or +# DISABLE_INDEX is set to NO, this option has no effect. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FULL_SIDEBAR = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png (the default) and svg (looks nicer but requires the +# pdf2svg or inkscape tool). +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. +# Note that the different versions of MathJax have different requirements with +# regards to the different settings, so it is possible that also other MathJax +# settings have to be changed when switching between the different MathJax +# versions. +# Possible values are: MathJax_2 and MathJax_3. +# The default value is: MathJax_2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_VERSION = MathJax_2 + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. For more details about the output format see MathJax +# version 2 (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3 +# (see: +# http://docs.mathjax.org/en/latest/web/components/output.html). +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility. This is the name for Mathjax version 2, for MathJax version 3 +# this will be translated into chtml), NativeMML (i.e. MathML. Only supported +# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This +# is the name for Mathjax version 3, for MathJax version 2 this will be +# translated into HTML-CSS) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. The default value is: +# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 +# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://www.mathjax.org/mathjax + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# for MathJax version 2 (see +# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# For example for MathJax version 3 (see +# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): +# MATHJAX_EXTENSIONS = ams +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /