goep_client.c (5715f07244d23d5a823692ee6681ef5e54b6f687) goep_client.c (c425ea4ad2d8f180e6801d50044dd8902123ac56)
1/*
2 * Copyright (C) 2014 BlueKitchen GmbH
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright

--- 98 unchanged lines hidden (view full) ---

107static l2cap_ertm_config_t ertm_config = {
108 1, // ertm mandatory
109 2, // max transmit, some tests require > 1
110 2000,
111 12000,
112 512, // l2cap ertm mtu
113 2,
114 2,
1/*
2 * Copyright (C) 2014 BlueKitchen GmbH
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright

--- 98 unchanged lines hidden (view full) ---

107static l2cap_ertm_config_t ertm_config = {
108 1, // ertm mandatory
109 2, // max transmit, some tests require > 1
110 2000,
111 12000,
112 512, // l2cap ertm mtu
113 2,
114 2,
115 0, // No FCS
115};
116#endif
117
118static inline void goep_client_emit_connected_event(goep_client_t * context, uint8_t status){
119 uint8_t event[15];
120 int pos = 0;
121 event[pos++] = HCI_EVENT_GOEP_META;
122 pos++; // skip len

--- 441 unchanged lines hidden ---
116};
117#endif
118
119static inline void goep_client_emit_connected_event(goep_client_t * context, uint8_t status){
120 uint8_t event[15];
121 int pos = 0;
122 event[pos++] = HCI_EVENT_GOEP_META;
123 pos++; // skip len

--- 441 unchanged lines hidden ---