/btstack/3rd-party/lwip/core/src/apps/tftp/ |
H A D | tftp.c | 87 u16_t port; member 103 tftp_state.port = 0; in close_handle() 136 send_request(const ip_addr_t *addr, u16_t port, u16_t opcode, const char* fname, const char* mode) in send_request() argument 152 ret = udp_sendto(tftp_state.upcb, p, addr, port); in send_request() 158 send_error(const ip_addr_t *addr, u16_t port, enum tftp_error code, const char *str) in send_error() argument 173 ret = udp_sendto(tftp_state.upcb, p, addr, port); in send_error() 179 send_ack(const ip_addr_t *addr, u16_t port, u16_t blknum) in send_ack() argument 189 ret = udp_sendto(tftp_state.upcb, p, addr, port); in send_ack() 195 resend_data(const ip_addr_t *addr, u16_t port) in resend_data() argument 209 ret = udp_sendto(tftp_state.upcb, p, addr, port); in resend_data() [all …]
|
/btstack/port/samv71-xplained-atwilc3000/ASF/common/services/ioport/ |
H A D | ioport.h | 170 static inline void ioport_enable_port(ioport_port_t port, in ioport_enable_port() argument 173 arch_ioport_enable_port(port, mask); in ioport_enable_port() 193 static inline void ioport_disable_port(ioport_port_t port, in ioport_disable_port() argument 196 arch_ioport_disable_port(port, mask); in ioport_disable_port() 208 static inline void ioport_set_port_mode(ioport_port_t port, in ioport_set_port_mode() argument 211 arch_ioport_set_port_mode(port, mask, mode); in ioport_set_port_mode() 231 static inline void ioport_reset_port_mode(ioport_port_t port, in ioport_reset_port_mode() argument 234 arch_ioport_set_port_mode(port, mask, 0); in ioport_reset_port_mode() 254 static inline void ioport_set_port_dir(ioport_port_t port, in ioport_set_port_dir() argument 257 arch_ioport_set_port_dir(port, mask, dir); in ioport_set_port_dir() [all …]
|
/btstack/port/samv71-xplained-atwilc3000/ASF/common/services/ioport/sam/ |
H A D | ioport_pio.h | 51 #define IOPORT_CREATE_PIN(port, pin) ((IOPORT_ ## port) * 32 + (pin)) argument 112 __always_inline static Pio *arch_ioport_port_to_base(ioport_port_t port) in arch_ioport_port_to_base() argument 115 if (port == IOPORT_PIOC) { in arch_ioport_port_to_base() 118 } else if (port == IOPORT_PIOD) { in arch_ioport_port_to_base() 123 (IOPORT_PIO_OFFSET * port)); in arch_ioport_port_to_base() 127 (IOPORT_PIO_OFFSET * port)); in arch_ioport_port_to_base() 163 __always_inline static void arch_ioport_enable_port(ioport_port_t port, in arch_ioport_enable_port() argument 166 arch_ioport_port_to_base(port)->PIO_PER = mask; in arch_ioport_enable_port() 169 __always_inline static void arch_ioport_disable_port(ioport_port_t port, in arch_ioport_disable_port() argument 172 arch_ioport_port_to_base(port)->PIO_PDR = mask; in arch_ioport_disable_port() [all …]
|
/btstack/port/renesas-tb-s1ja-cc256x/template/btstack_example/synergy/ssp/src/driver/r_ioport/hw/ |
H A D | hw_ioport_private.h | 78 ioport_port_t port, 86 …_INLINE ioport_size_t HW_IOPORT_PortRead (R_IOPORT1_Type * p_ioport_regs, ioport_port_t port); 88 …oport_size_t HW_IOPORT_PortDirectionRead (R_IOPORT1_Type * p_ioport_regs, ioport_port_t port); 90 …HW_IOPORT_PortDirectionSet (R_IOPORT1_Type * p_ioport_regs, ioport_port_t port, ioport_size_t valu… 94 …port_size_t HW_IOPORT_PortOutputDataRead (R_IOPORT1_Type * p_ioport_regs, ioport_port_t port); 96 …_size_t HW_IOPORT_PortEventInputDataRead (R_IOPORT1_Type * p_ioport_regs, ioport_port_t port); 99 ioport_port_t port, 104 ioport_port_t port, 219 ioport_port_t port, in HW_IOPORT_PortWriteWithPCNTR3() argument 230 p_dest = ioport_port_address_get((uint32_t volatile *) &p_ioport_regs->PCNTR3, port); in HW_IOPORT_PortWriteWithPCNTR3() [all …]
|
/btstack/port/renesas-tb-s1ja-cc256x/template/btstack_example/synergy/ssp/src/driver/r_ioport/ |
H A D | r_ioport.c | 73 static ssp_err_t r_ioport_port_exists(ioport_port_t port); 330 ssp_err_t R_IOPORT_PortRead (ioport_port_t port, ioport_size_t * p_port_value) in R_IOPORT_PortRead() argument 334 err = r_ioport_port_exists(port); in R_IOPORT_PortRead() 339 *p_port_value = HW_IOPORT_PortRead(gp_ioport_reg, port); in R_IOPORT_PortRead() 360 ssp_err_t R_IOPORT_PortWrite (ioport_port_t port, ioport_size_t value, ioport_size_t mask) in R_IOPORT_PortWrite() argument 369 err = r_ioport_port_exists(port); in R_IOPORT_PortWrite() 380 HW_IOPORT_PortWriteWithPCNTR3(gp_ioport_reg, port, setbits, clrbits); in R_IOPORT_PortWrite() 405 ioport_port_t port = (ioport_port_t) (0xFF00U & (ioport_size_t) pin); in R_IOPORT_PinWrite() local 419 HW_IOPORT_PortWriteWithPCNTR3(gp_ioport_reg, port, setbits, clrbits); in R_IOPORT_PinWrite() 438 ssp_err_t R_IOPORT_PortDirectionSet (ioport_port_t port, ioport_size_t direction_values, ioport_siz… in R_IOPORT_PortDirectionSet() argument [all …]
|
H A D | r_ioport_private_api.h | 38 ssp_err_t R_IOPORT_PortDirectionSet (ioport_port_t port, ioport_size_t direction_values, ioport_siz… 39 ssp_err_t R_IOPORT_PortEventInputRead (ioport_port_t port, ioport_size_t * event_data); 40 ssp_err_t R_IOPORT_PortEventOutputWrite (ioport_port_t port, ioport_size_t event_data, ioport_size_… 41 ssp_err_t R_IOPORT_PortRead (ioport_port_t port, ioport_size_t * p_port_value); 42 ssp_err_t R_IOPORT_PortWrite (ioport_port_t port, ioport_size_t value, ioport_size_t mask);
|
/btstack/ |
H A D | README.md | 60 …port-esp32-master.svg">](https://buildbot.bluekitchen-gmbh.com/btstack/#/builders/port-esp32-maste… 61 …port-max32630-fthr-master.svg">](https://buildbot.bluekitchen-gmbh.com/btstack/#/builders/port-max… 62 …port-msp432p401lp-cc256x-master.svg">](https://buildbot.bluekitchen-gmbh.com/btstack/#/builders/po… 63 …sas-ek-ra6m4a-da14531](https://github.com/bluekitchen/btstack/tree/master/port/rrenesas-ek-ra6m4a-… 64 …enesas-tb-s1ja-cc256x](https://github.com/bluekitchen/btstack/tree/master/port/renesas-tb-s1ja-cc2… 65 …port-samv71-xplained-atwilc3000-master.svg">](https://buildbot.bluekitchen-gmbh.com/btstack/#/buil… 66 …port-stm32-f4discovery-cc256x-master.svg">](https://buildbot.bluekitchen-gmbh.com/btstack/#/builde… 67 …port-stm32-l073rz-nucleo-em9304-master.svg">](https://buildbot.bluekitchen-gmbh.com/btstack/#/buil… 68 …b55xx-nucleo-freertos](https://github.com/bluekitchen/btstack/tree/master/port/stm32-wb55xx-nucleo… 69 …port-wiced-h4-master.svg">](https://buildbot.bluekitchen-gmbh.com/btstack/#/builders/port-wiced-h4… [all …]
|
/btstack/port/renesas-ek-ra6m4a-da14531/e2-project/ra/fsp/src/r_ioport/ |
H A D | r_ioport.c | 80 static void r_ioport_hw_pin_event_output_data_write(bsp_io_port_t port, 304 fsp_err_t R_IOPORT_PortRead (ioport_ctrl_t * const p_ctrl, bsp_io_port_t port, ioport_size_t * p_po… in R_IOPORT_PortRead() argument 316 …R_PORT0_Type * p_ioport_regs = IOPORT_PRV_PORT_ADDRESS((port >> IOPORT_PRV_PORT_OFFSET) & IOPORT_P… in R_IOPORT_PortRead() 342 fsp_err_t R_IOPORT_PortWrite (ioport_ctrl_t * const p_ctrl, bsp_io_port_t port, ioport_size_t value… in R_IOPORT_PortWrite() argument 364 …R_PORT0_Type * p_ioport_regs = IOPORT_PRV_PORT_ADDRESS((port >> IOPORT_PRV_PORT_OFFSET) & IOPORT_P… in R_IOPORT_PortWrite() 396 bsp_io_port_t port = (bsp_io_port_t) (IOPORT_PRV_PORT_BITS & (ioport_size_t) pin); in R_IOPORT_PinWrite() local 414 …R_PORT0_Type * p_ioport_regs = IOPORT_PRV_PORT_ADDRESS((port >> IOPORT_PRV_PORT_OFFSET) & IOPORT_P… in R_IOPORT_PinWrite() 439 bsp_io_port_t port, in R_IOPORT_PortDirectionSet() argument 458 …R_PORT0_Type * p_ioport_regs = IOPORT_PRV_PORT_ADDRESS((port >> IOPORT_PRV_PORT_OFFSET) & IOPORT_P… in R_IOPORT_PortDirectionSet() 499 fsp_err_t R_IOPORT_PortEventInputRead (ioport_ctrl_t * const p_ctrl, bsp_io_port_t port, ioport_siz… in R_IOPORT_PortEventInputRead() argument [all …]
|
/btstack/3rd-party/lwip/core/src/netif/ppp/ |
H A D | PPPD_FOLLOWUP | 21 the ppp port, but it wasn't really helpful and was disabled when adding 28 in Debian but not in the latest (at the time when the port were started) 57 of the port. 65 feature is disabled in the port, so we don't care about the new 82 in our port. 112 Not in the port. 145 Change on Makefile for IPv6, warnings were already cleared during port. 181 Radius plugin, not in the port. 242 Commented out in our port, and already fixed by a previously applied Debian patch. 254 Radius plugin, not in the port. [all …]
|
/btstack/3rd-party/lwip/core/src/netif/ |
H A D | bridgeif.c | 332 bridgeif_port_t *port; in bridgeif_input() local 336 port = (bridgeif_port_t *)netif_get_client_data(netif, bridgeif_netif_client_id); in bridgeif_input() 337 LWIP_ASSERT("port data not set", port != NULL); in bridgeif_input() 338 if (port == NULL || port->bridge == NULL) { in bridgeif_input() 341 br = (bridgeif_private_t *)port->bridge; in bridgeif_input() 351 bridgeif_fdb_update_src(br->fdbd, src, port->port_num); in bridgeif_input() 527 bridgeif_port_t *port; in bridgeif_add_port() local 543 port = &br->ports[br->num_ports]; in bridgeif_add_port() 544 port->port_netif = portif; in bridgeif_add_port() 545 port->port_num = br->num_ports; in bridgeif_add_port() [all …]
|
/btstack/doc/manual/ |
H A D | markdown_create_ports.py | 27 for port in ports: 28 if port not in blacklist: 29 readme_file = port_folder + "/" + port + "/" + "README.md" 31 matches[port] = readme_file 32 for file in os.listdir(port_folder + "/" + port): 34 images[file] = port_folder + "/" + port + "/" + file
|
/btstack/platform/daemon/binding/java/src/com/bluekitchen/btstack/ |
H A D | SocketConnectionTCP.java | 11 private int port; field in SocketConnectionTCP 22 public void setTcpPort(int port) { in setTcpPort() argument 23 this.port = port; in setTcpPort() 32 socket = new Socket("localhost", port); in connect()
|
/btstack/port/stm32-f4discovery-usb/ |
H A D | .mxproject | 4 HeaderFiles#0=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/USB_HOST/App/usb_hos… 5 HeaderFiles#1=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/USB_HOST/Target/usbh… 6 HeaderFiles#2=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/USB_HOST/Target/usbh… 7 HeaderFiles#3=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/Core/Inc/stm32f4xx_i… 8 HeaderFiles#4=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/Core/Inc/stm32f4xx_h… 9 HeaderFiles#5=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/Core/Inc/main.h 11 HeaderPath#0=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/USB_HOST/App 12 HeaderPath#1=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/USB_HOST/Target 13 HeaderPath#2=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/Core/Inc 16 SourceFiles#0=/Users/mringwal/Projects/btstack/port/stm32-f4discovery-usb-blog/USB_HOST/App/usb_hos… [all …]
|
/btstack/port/archive/ |
H A D | README.md | 8 - MSP430 ports: The ports used the not-maintained version of the community MSP430 gcc port, which d… 9 …A current port should use the official GCC version sponsored by TI. In addition, the MSP430 UART d… 10 …For a new port, our [ringbuffer approach](https://bluekitchen-gmbh.com/msp432p401r-cc2564c-port-ua… 17 - Unix-based system connected to Broadcom/Cypress Bluetooth module via H5 over serial port 20 - Port for MicroChip PIC32 with Harmony Framework: the original port was for Harmony v1, while ther… 23 - iOS port:
|
/btstack/3rd-party/lwip/core/ |
H A D | BUILDING | 28 3) OS/platform port: 29 Usually the OS port needs to be provided by the user. 30 If a port to Linux, Windows or MacOS is useful for 47 - to a directory containing an OS port 54 "${LWIP_DIR}/contrib/ports/unix/port/include" 66 "<path to my port>/include" 78 add_executable(my_app <my source files> <my lwip port files>) 99 The CMakeLists.txt will autoselect the correct port
|
/btstack/3rd-party/lwip/core/src/apps/snmp/ |
H A D | snmp_raw.c | 47 snmp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) in snmp_recv() argument 51 snmp_receive(pcb, p, addr, port); in snmp_recv() 57 snmp_sendto(void *handle, struct pbuf *p, const ip_addr_t *dst, u16_t port) in snmp_sendto() argument 59 return udp_sendto((struct udp_pcb *)handle, p, dst, port); in snmp_sendto()
|
/btstack/3rd-party/lwip/core/src/include/lwip/apps/ |
H A D | http_client.h | 142 err_t httpc_get_file(const ip_addr_t* server_addr, u16_t port, const char* uri, const httpc_connect… 144 err_t httpc_get_file_dns(const char* server_name, u16_t port, const char* uri, const httpc_connecti… 148 err_t httpc_get_file_to_disk(const ip_addr_t* server_addr, u16_t port, const char* uri, const httpc… 150 err_t httpc_get_file_dns_to_disk(const char* server_name, u16_t port, const char* uri, const httpc_…
|
/btstack/port/freebsd-netgraph/ |
H A D | README.md | 4 This port assumes that FreeBSD provides an ng_hci netgraph node for a connected Bluetooth Controlle… 7 For Bluetooth Controllers connected via UART, the POSX-H4 port might be a better option als 11 port create a custom netgraph ng_socket node and connect to the 'acl' and 'raw' hooks of the hci no… 16 BTstack's FeeeBSD port does not have additional dependencies. To compile the cmake project with Make 32 As the port needs to reconfigure the Bluetooth netgraph node, it needs to run with root privileges.
|
/btstack/3rd-party/lwip/core/src/core/ |
H A D | altcp.c | 303 altcp_bind(struct altcp_pcb *conn, const ip_addr_t *ipaddr, u16_t port) in altcp_bind() argument 306 return conn->fns->bind(conn, ipaddr, port); in altcp_bind() 316 altcp_connect(struct altcp_pcb *conn, const ip_addr_t *ipaddr, u16_t port, altcp_connected_fn conne… in altcp_connect() argument 319 return conn->fns->connect(conn, ipaddr, port, connected); in altcp_connect() 478 altcp_get_tcp_addrinfo(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_t *port) in altcp_get_tcp_addrinfo() argument 481 return conn->fns->addrinfo(conn, local, addr, port); in altcp_get_tcp_addrinfo() 552 altcp_default_bind(struct altcp_pcb *conn, const ip_addr_t *ipaddr, u16_t port) in altcp_default_bind() argument 555 return altcp_bind(conn->inner_conn, ipaddr, port); in altcp_default_bind() 661 altcp_default_get_tcp_addrinfo(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_t *port) in altcp_default_get_tcp_addrinfo() argument 664 return altcp_get_tcp_addrinfo(conn->inner_conn, local, addr, port); in altcp_default_get_tcp_addrinfo()
|
/btstack/port/windows-h4-zephyr/ |
H A D | README.md | 3 The main difference to the regular windows-h4 port is that that the Zephyr Contoller uses 1000000 a… 4 In addition, the port defaults to use the fixed static address stored during production. 6 The port provides both a regular Makefile as well as a CMake build file. It uses native Win32 APIs … 28 ## Configure serial port 30 To set the serial port of your Zephyr Controller, you can either update config.device_name in main.… 35 Visual Studio can directly open the provided `port/windows-windows-h4-zephyr/CMakeLists.txt` and al… 54 With mingw64-w64 installed, just go to the port/windows-h4 directory and use CMake as usual 56 $ cd port/windows-h4
|
/btstack/port/nrf5-cinnamon/ |
H A D | CMakeLists.txt | 17 # Compile pca10040 port using Make 26 add_executable(port EXCLUDE_FROM_ALL target 36 target_include_directories(port SYSTEM PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} 37 ${CMAKE_CURRENT_SOURCE_DIR}/port
|
/btstack/port/renesas-ek-ra6m4a-da14531/e2-project/ra/fsp/inc/api/ |
H A D | r_ioport_api.h | 329 …fsp_err_t (* portDirectionSet)(ioport_ctrl_t * const p_ctrl, bsp_io_port_t port, ioport_size_t dir… 338 …fsp_err_t (* portEventInputRead)(ioport_ctrl_t * const p_ctrl, bsp_io_port_t port, ioport_size_t *… 348 …fsp_err_t (* portEventOutputWrite)(ioport_ctrl_t * const p_ctrl, bsp_io_port_t port, ioport_size_t… 357 …fsp_err_t (* portRead)(ioport_ctrl_t * const p_ctrl, bsp_io_port_t port, ioport_size_t * p_port_va… 366 …fsp_err_t (* portWrite)(ioport_ctrl_t * const p_ctrl, bsp_io_port_t port, ioport_size_t value, iop…
|
/btstack/3rd-party/lwip/core/src/include/lwip/priv/ |
H A D | altcp_priv.h | 61 typedef err_t (*altcp_bind_fn)(struct altcp_pcb *conn, const ip_addr_t *ipaddr, u16_t port); 62 typedef err_t (*altcp_connect_fn)(struct altcp_pcb *conn, const ip_addr_t *ipaddr, u16_t port, altc… 84 …rr_t (*altcp_get_tcp_addrinfo_fn)(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_t *port); 130 err_t altcp_default_bind(struct altcp_pcb *conn, const ip_addr_t *ipaddr, u16_t port); 142 …_t altcp_default_get_tcp_addrinfo(struct altcp_pcb *conn, int local, ip_addr_t *addr, u16_t *port);
|
/btstack/example/ |
H A D | README.md | 7 By this, the examples are linked in by various ports in the port/ directory. 8 Please go to one of the subfolders of port/ to compile for a specific BTstack port.
|
/btstack/port/max32630-fthr/ |
H A D | README.md | 3 This port uses the [MAX32630FTHR ARM Cortex M4F Board](https://www.maximintegrated.com/en/products/… 4 …are via a virtual mass storage device (like mbed), provides a virtual COM port for a console, and … 6 The port uses non-blocking polling UART communication with hardware flow control for Bluetooth cont… 25 Then, go to the port/max32630-fthr folder and run "make" command in terminal to generate example pr… 27 In each example folder, e.g. port/max323630-fthr/example/spp_and_le_streamer, you can run "make" ag… 33 …ME.pdf file where the Maxim Toolchain is installed. Please note that this port was done using Make… 47 … UART2 is accessible via the DAPLINK Programming Adapter as a virtual COM port at 115200 baud with…
|