bugobliterator
bace8d4c85
AP_HAL: add methods that deal in ip address as uint32_t
2024-06-21 20:31:31 +10:00
bugobliterator
3c69f156f4
AP_HAL: make recv call to be undirected but also get the ip:port of received packet
2024-06-21 20:31:31 +10:00
bugobliterator
43615f22b7
AP_HAL: add AP_MAVLINK_PACKETISE_ENABLE option
2024-06-21 20:31:31 +10:00
Andrew Tridgell
20959524b8
AP_HAL: use NEW_NOTHROW for new(std::nothrow)
2024-06-04 09:20:21 +10:00
Iampete1
92adcb14e1
AP_HAL: utility: Add Data Rate Limit helper
2024-04-23 09:16:55 +10:00
Ryan Friedman
650db2db35
AP_HAL: Fix incorrect return type
...
* This caused position quantization errors in the MicroStrain7
Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
2024-03-25 08:06:46 +11:00
Andrew Tridgell
07fee626d9
AP_HAL: added IP4_STR_LEN
2024-01-21 12:30:08 +11:00
Andrew Tridgell
40a029c15d
AP_HAL: allow socket build for bootloader
2024-01-21 12:30:08 +11:00
Andrew Tridgell
7d1cc14b1e
AP_HAL: fixed build with AP_SIM_ENABLED
2024-01-07 20:51:55 +11:00
Andrew Tridgell
1e7ca34531
AP_HAL: socket native fix
2024-01-03 12:14:47 +11:00
Andrew Tridgell
ef67fa4293
AP_HAL: use SocketAPM_native
2024-01-03 12:14:47 +11:00
Andrew Tridgell
cbb3e27519
AP_HAL: added SocketAPM_native
...
this is a varient of SocketAPM that always uses native sockets
(ie. doesn't go via AP_Networking lwip)
2024-01-03 12:14:47 +11:00
Andrew Tridgell
3d5251dfe8
AP_HAL: added inet_str_to_addr to SocketAPM
2024-01-03 12:14:47 +11:00
Andrew Tridgell
8e132e44cf
AP_HAL: improved sockaddr_in compatibility
2024-01-03 12:14:47 +11:00
Andrew Tridgell
e53729f331
AP_HAL: make Socket.cpp safe for lwip and SITL usage
2024-01-03 12:14:47 +11:00
Andrew Tridgell
7b5b1ba59f
AP_HAL: fixed build without MSG_NOSIGNAL
...
for older MacOSX
2024-01-02 08:12:37 +11:00
Andrew Tridgell
9358bfce34
AP_HAL: added duplicate() in SocketAPM
2023-12-11 18:00:38 +11:00
Andrew Tridgell
a77331e725
AP_HAL: mark socket as not connected on EOF
...
this allows lua scripts to properly detect a closed TCP connection
2023-12-11 18:00:38 +11:00
Andrew Tridgell
64d649fbcc
AP_HAL: fixed SO_REUSEADDR on bind
...
and use MSG_NOSIGNAL to prevent pipe errors in SITL
2023-12-11 18:00:38 +11:00
Andrew Tridgell
98e8b9785c
AP_HAL: added close() to SocketAPM
2023-12-11 18:00:38 +11:00
Andrew Tridgell
b49152bbe6
AP_HAL: mark new accept() socket as connected
2023-12-11 18:00:38 +11:00
Andrew Tridgell
2ee48dea29
AP_HAL: support bi-directional UDP broadcast sockets
2023-11-28 12:18:55 +11:00
Andrew Tridgell
a05acfc090
AP_HAL: added last_recv_address() with supplied buffer
...
this prevents a race condition with a static string
2023-11-28 12:18:55 +11:00
Tom Pittenger
e8c852f0d4
AP_HAL: Allow APMSockets to autodetect Broadcast IPs
2023-11-25 16:28:07 -08:00
Andrew Tridgell
ee592476ce
AP_HAL: implement multicast for UDP sockets
2023-11-25 12:19:43 -08:00
Tom Pittenger
df600e5582
AP_HAL: Enable SocketAPM to use LwIP/ChibiOS
2023-11-15 12:43:41 -08:00
Andrew Tridgell
26823b56ae
AP_HAL: added connect_timeout to SocketAPM
2023-10-23 20:27:49 +11:00
Mykhailo Kuznietsov
cc2e156888
AP_HAL: Fix some typos
...
Fixed some typos found in the code.
2023-10-12 18:30:42 +11:00
Andrew Tridgell
64040bfab4
AP_HAL: move ESC scaling up to AP_HAL level
2023-08-24 13:06:40 +10:00
Andrew Tridgell
8a8a45dd23
AP_HAL: added set_size_best() for ByteBuffer
2023-07-18 11:38:27 +10:00
Andrew Tridgell
ceb07c3f7b
AP_HAL: moved locking to AP_HAL and added monitor callback
2023-07-12 17:06:02 +10:00
Ryan Friedman
0faf1a2152
AP_HAL: Use new AP_Math utils
...
Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
2023-06-05 09:09:13 +10:00
Ryan Friedman
35c8951395
AP_HAL: Add methods for beNto<floatingType> conversions
...
Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
2023-06-05 09:09:13 +10:00
Ryan Friedman
925e9d8cbc
AP_HAL: Add reference to sparse endian manpage
...
Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
2023-05-13 11:32:38 +10:00
Peter Barker
394d70abe0
AP_HAL: add and use a "bool read(c)" method to AP_HAL
...
this is much less likely to not work vs the int16_t equivalent
2023-03-22 17:59:11 +11:00
Peter Barker
4cd97d58d7
AP_HAL: gate mavlink things on HAL_GCS_ENABLED, not HAL_BOOTLOADER_BUILD
2023-02-01 18:46:28 +11:00
Andrew Tridgell
a14c5b2955
AP_HAL: check for null buffer in ObjectBuffer get_size()
2023-01-08 15:11:32 +11:00
Andrew Tridgell
56d74a352c
AP_HAL: fixed vprintf for no hal.h
2022-02-22 12:13:19 +11:00
murata
7eb231281b
AP_HAL: Remove meaningless semicolons
2022-02-07 08:27:34 +09:00
Davis Schenkenberger
795e7e53bf
AP_HAL: add helpers le64toh_ptr, be64toh_ptr, put_le64_ptr, put_be64_ptr
2021-10-17 08:55:03 +11:00
Andrew Tridgell
aa05629ef6
AP_HAL: added peekiovec test
...
fixes #18285
2021-09-30 12:46:07 +10:00
Pierre Kancir
c12217eeb5
AP_HAL: use correct #pragma GCC diagnostic pop
2021-09-29 17:27:29 +10:00
Peter Barker
1976b2b859
AP_HAL: move from HAL_NO_GCS to HAL_GCS_ENABLED
2021-09-22 21:37:00 +10:00
Pierre Kancir
2b44f86f9c
AP_HAL: fix ringbuffer test on clang.
...
../../libraries/AP_HAL/utility/tests/test_ringbuffer.cpp:46:17: fatal error: variable-sized object may not be initialized
uint8_t buf[strlen(str)+5] {};
2021-09-04 15:46:47 +10:00
Peter Barker
2cdc4f5698
AP_HAL: add basic tests for ringbuffer
2021-07-26 15:10:01 +10:00
Andrew Tridgell
90aed6f338
AP_HAL: fixed get_size() on ObjectBuffer to be consistent with set_size()
2021-07-26 15:10:01 +10:00
Siddharth Purohit
0138266fee
AP_HAL: disable cast align check while casting char* read pointer to object
2021-07-15 07:50:12 +10:00
Andrew Tridgell
7c5c805381
AP_HAL: removed perf counters
2021-06-07 14:29:27 +10:00
Patrick José Pereira
6899c0b5af
AP_HAL: Add missing const in member functions
...
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
2021-02-03 18:45:14 +11:00
Tom Pittenger
afaca30075
AP_HAL: add helpers le24toh_ptr(), be24toh_ptr(), put_le24_ptr(), put_be24_ptr()
2020-12-30 17:56:38 -08:00