Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drivers: wifi: re-organize header files #11874

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/nrf/drivers/nrf700x/low_api_common.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Common

The common API is used for both normal operation and Radio Test mode.

| Header file: :file:`drivers/wifi/nrf700x/osal/fw_if/umac_if/inc/fmac_structs_common.h`
| Header file: :file:`include/drivers/nrf700x/fmac_structs_common.h`
| Source file: :file:`drivers/wifi/nrf700x/osal/fw_if/umac_if/src/fmac_api_common.c`


Expand Down
2 changes: 1 addition & 1 deletion doc/nrf/drivers/nrf700x/low_api_wifi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Wi-Fi mode

This mode is used for normal operation of the nRF700X device in, for example, STA mode or other modes that are supported in the future.

| Header file: :file:`drivers/wifi/nrf700x/osal/fw_if/umac_if/inc/default/fmac_api.h`
| Header file: :file:`include/drivers/nrf700x/default/fmac_api.h`
| Source file: :file:`drivers/wifi/nrf700x/osal/fw_if/umac_if/src/default/fmac_api.c`

.. doxygengroup:: nrf700x_fmac_api
Expand Down
8 changes: 4 additions & 4 deletions doc/nrf/nrf.doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -755,10 +755,10 @@ INPUT = @NRF_BASE@/applications \
@NRF_BASE@/lib \
@NRF_BASE@/include \
@NRF_BASE@/subsys/zigbee/osif/zb_nrf_platform.h \
@NRF_BASE@/drivers/wifi/nrf700x/osal/fw_if/umac_if/inc/fmac_api_common.h \
@NRF_BASE@/drivers/wifi/nrf700x/osal/fw_if/umac_if/inc/fmac_structs_common.h \
@NRF_BASE@/drivers/wifi/nrf700x/osal/fw_if/umac_if/inc/default \
@NRF_BASE@/drivers/wifi/nrf700x/osal/fw_if/umac_if/inc/radio_test/fmac_api.h
@NRF_BASE@/include/drivers/nrf700x/fmac_api_common.h \
@NRF_BASE@/include/drivers/nrf700x/fmac_structs_common.h \
@NRF_BASE@/include/drivers/nrf700x/default \
@NRF_BASE@/include/drivers/nrf700x/radio_test/fmac_api.h

# 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
Expand Down
3 changes: 3 additions & 0 deletions drivers/wifi/nrf700x/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ zephyr_include_directories(
${ZEPHYR_BASE}/subsys/net/ip
osal/hw_if/hal/inc/fw
osal/fw_if/umac_if/inc/fw
${ZEPHYR_BASE}/../nrf/include/drivers/nrf700x/fw
)

zephyr_include_directories_ifdef(CONFIG_NRF700X_RADIO_TEST
osal/fw_if/umac_if/inc/radio_test
${ZEPHYR_BASE}/../nrf/include/drivers/nrf700x/radio_test
)

zephyr_include_directories_ifndef(CONFIG_NRF700X_RADIO_TEST
osal/fw_if/umac_if/inc/default
${ZEPHYR_BASE}/../nrf/include/drivers/nrf700x/default
)

zephyr_library_sources_ifdef(CONFIG_NRF700X_BT_COEX
Expand Down
Loading