Skip to content

Commit 4c3002e

Browse files
committed
Commet fixes
1 parent 0468501 commit 4c3002e

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

include/csp/csp_id.h

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ extern "C" {
1616
void csp_id_prepend(csp_packet_t * packet);
1717

1818
/**
19-
* Extract CSP header from a 4 (CSP1) or 6 (CSP2) byte array
19+
* Extract CSP header from a 4 (CSP1) or 6 (CSP2) byte array.
2020
*
21-
* @param The first bytes of a CSP packet, representing CSP the header structure
22-
* @return The extracted header ID
21+
* @param The first bytes of a CSP packet, representing the CSP header structure.
22+
* @return The extracted header ID structure.
2323
*/
2424
csp_id_t csp_id_extract(const uint8_t * data);
2525

@@ -94,7 +94,13 @@ int csp_id_get_header_size(void);
9494
*/
9595
void csp_id_prepend_fixup_cspv1(csp_packet_t * packet);
9696

97-
csp_id_t csp_id_extract(const uint8_t * data);
97+
/**
98+
* Extract CSP header from a 4 (CSP1) or 6 (CSP2) byte array (ZMQ fixup).
99+
*
100+
* @param The first bytes of a CSP packet, representing the CSP header structure.
101+
* @return The extracted header ID structure.
102+
*/
103+
csp_id_t csp_id_extract_fixup_cspv1(const uint8_t * data);
98104

99105
/**
100106
* Strip CSPv1-compatible ID header (ZMQ fixup).

0 commit comments

Comments
 (0)