Skip to content

Commit

Permalink
Change back to CSP_O_NONE in csp_transaction
Browse files Browse the repository at this point in the history
Future versions should add an option argument to csp_transaction,
or maybe have a csp_transaction_set_options() to change it globally
  • Loading branch information
johandc committed Oct 25, 2013
1 parent 6d593f9 commit f943535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/csp_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ int csp_transaction_persistent(csp_conn_t * conn, uint32_t timeout, void * outbu

int csp_transaction(uint8_t prio, uint8_t dest, uint8_t port, uint32_t timeout, void * outbuf, int outlen, void * inbuf, int inlen) {

csp_conn_t * conn = csp_connect(prio, dest, port, 0, CSP_O_CRC32);
csp_conn_t * conn = csp_connect(prio, dest, port, 0, CSP_O_NONE);
if (conn == NULL)
return 0;

Expand Down

0 comments on commit f943535

Please sign in to comment.