1# Copyright (c) 2024 Witekio 2# SPDX-License-Identifier: Apache-2.0 3 4mainmenu "CoAP Download Sample Application" 5 6config NET_SAMPLE_COAP_SERVER_PORT 7 int "CoAP server port" 8 default 5683 9 help 10 CoAP server port that the application should send requests to. 11 12config NET_SAMPLE_COAP_RESOURCE_PATH 13 string "The CoAP resource path to download" 14 default "test.txt" 15 help 16 The path (relative to server's root directory) of the CoAP resource 17 the application should download. 18 19source "Kconfig.zephyr" 20