author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
491,609
26.06.2017 10:24:17
-7,200
be90bf1b89b3c989b66ba92445b1798bd5234dc9
Simplify option encoding.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -253,15 +253,8 @@ void opencoap_receive(OpenQueueEntry_t* msg) {\nmsg->payload[0] = COAP_PAYLOAD_MARKER;\n}\n- // fake run of opencoap_options_encode in order to get the nec...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Simplify option encoding.
491,609
26.06.2017 10:35:28
-7,200
7cceca7625d4973dfbcc842c470f9d0e9ac9da15
Move source code to reflect public-private organization.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -558,7 +558,6 @@ coap_option_class_t opencoap_get_option_class(coap_option_t type) {\nreturn COAP_OPTION_CLASS_U;\n}\n}\n-//=========================== private =============...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Move source code to reflect public-private organization.
491,609
26.06.2017 10:38:24
-7,200
00c15b7cd1e215bfe6f518e78f27873a8666433b
Fix resetting of sequence number length.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/openoscoap.c", "new_path": "openapps/opencoap/openoscoap.c", "diff": "@@ -247,7 +247,7 @@ owerror_t openoscoap_protect_message(\nxor_arrays(nonce, partialIV, nonce, AES_CCM_16_64_128_IV_LEN);\n// do not encode sequence number and ID in the re...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Fix resetting of sequence number length.
491,609
26.06.2017 10:56:23
-7,200
c579abf4ddbf2e58fd2527446621fd4b87975453
Remove remnant prototype.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -18,8 +18,6 @@ opencoap_vars_t opencoap_vars;\nuint8_t opencoap_options_parse(OpenQueueEntry_t* msg,\ncoap_option_iht* options,\nuint8_t optionsLen);\n-\n-coap_option_iht* o...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Remove remnant prototype.
491,609
26.06.2017 14:35:11
-7,200
ee58e7c13cf00731fba701de7e1053a89f37f0ed
ADd OSCOAP error codes to opendefs.
[ { "change_type": "MODIFY", "old_path": "inc/opendefs.h", "new_path": "inc/opendefs.h", "diff": "@@ -256,7 +256,9 @@ enum {\nERR_UNSUPPORTED_METADATA = 0x41, // the metadata type is not suppored\nERR_JOINED = 0x42, // node joined\nERR_SEQUENCE_NUMBER_OVERFLOW = 0x43, // OSCOAP sequence number reached...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. ADd OSCOAP error codes to opendefs.
491,609
26.06.2017 14:36:48
-7,200
1d5489664e4e3119cba156717b6e1df8122eb9b2
Towards OSCOAP verification of a response.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -17,7 +17,7 @@ opencoap_vars_t opencoap_vars;\n//=========================== prototype =======================================\nuint8_t opencoap_options_parse(OpenQueueEntry...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Towards OSCOAP verification of a response.
491,609
26.06.2017 15:32:27
-7,200
ce241b19603d8376ec974b8e15f7e75d49d5f58d
Handle zero-length options during parsing.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -696,6 +696,8 @@ uint8_t opencoap_options_parse(\n// initialize the coap_incomingOptions\nfor (i=0;i<*optionsLen;i++) {\noptions[i].type = COAP_OPTION_NONE;\n+ options[i].le...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Handle zero-length options during parsing.
491,609
26.06.2017 17:26:09
-7,200
bacb6f10837bb93a2770121eed4ce3a8d6af2966
Implement compressed COSE decoding.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -63,7 +63,10 @@ void opencoap_receive(OpenQueueEntry_t* msg) {\nuint8_t coap_incomingOptionsLen;\nuint8_t coap_outgoingOptionsLen;\nowerror_t decStatus;\n-\n+ coap_option_ih...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Implement compressed COSE decoding.
491,609
26.06.2017 17:59:21
-7,200
ef298fa8d54a5155176257a72c289c3adafc926c
Export parse options function.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "opencoap_vars_t opencoap_vars;\n//=========================== prototype =======================================\n-uint8_t opencoap_options_parse(OpenQueueEntry_t* msg,\n- coap_...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Export parse options function.
491,609
26.06.2017 18:00:19
-7,200
80c03c0c60388d3fc1762b7e611486947dba0d79
Decode options after decrypting.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/openoscoap.c", "new_path": "openapps/opencoap/openoscoap.c", "diff": "@@ -287,7 +287,7 @@ owerror_t openoscoap_unprotect_message(\nuint8_t version,\nuint8_t code,\ncoap_option_iht* options,\n- uint8_t optionsLen,\n+ uint8_t* optionsLen,\nOpen...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Decode options after decrypting.
491,609
27.06.2017 14:42:34
-7,200
ad0c016bef7e434964cf1d211a7797fb1a658919
Fix broken CoAP option encoding.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -622,6 +622,7 @@ owerror_t opencoap_options_encode(\n) {\nuint8_t i;\n+ uint8_t ii;\nuint32_t delta;\nuint8_t optionDelta;\nuint8_t optionDeltaExt[2];\n@@ -629,24 +630,34 @@...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Fix broken CoAP option encoding.
491,609
27.06.2017 18:37:08
-7,200
fefd06c5d702cb9d99d7f9675096f83ff93367f9
Bug fix for verifying responses.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/openoscoap.c", "new_path": "openapps/opencoap/openoscoap.c", "diff": "#include \"opendefs.h\"\n#include \"openserial.h\"\n#include \"packetfunctions.h\"\n-#include \"opencoap.h\"\n+#include \"openoscoap.h\"\n#include \"cborencoder.h\"\n#inclu...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Bug fix for verifying responses.
491,609
27.06.2017 18:38:07
-7,200
1ebbfdec148fb6cf1d6ee9c8e10aa9e9eebe00bf
Move some defines to opencoap to avoid circular dependency.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.h", "new_path": "openapps/opencoap/opencoap.h", "diff": "@@ -38,6 +38,22 @@ static const uint8_t ipAddr_ringmaster[] = {0xbb, 0xbb, 0x00, 0x00, 0x00, 0x00,\n#define COAP_VERSION 1\n+// OSCOAP related defines\n+\n+#define OSCOAP_MAX_I...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Move some defines to opencoap to avoid circular dependency.
491,609
27.06.2017 18:39:38
-7,200
1ce464da9d9f3b99a810c0e874ea58dd465e30fd
Towards verification of requests.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "#include \"opendefs.h\"\n#include \"opencoap.h\"\n+#include \"openoscoap.h\"\n#include \"openqueue.h\"\n#include \"openserial.h\"\n#include \"openrandom.h\"\n@@ -64,11 +65,16 @...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Towards verification of requests.
491,609
27.06.2017 19:35:20
-7,200
7d25fcda8c262309416bfac292cd71c6babf2717
Protecting the response.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -67,10 +67,12 @@ void opencoap_receive(OpenQueueEntry_t* msg) {\nuint8_t rcvdKidLen;\noscoap_security_context_t* blindContext;\ncoap_code_t securityReturnCode;\n+ coap_optio...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Protecting the response.
491,595
28.06.2017 10:00:59
-7,200
4e05d8bc54b59632d5da771818bf8b4a05b3ce11
Add timer id parameter in opentimer callback.
[ { "change_type": "MODIFY", "old_path": "drivers/common/openserial.c", "new_path": "drivers/common/openserial.c", "diff": "@@ -45,7 +45,7 @@ void openserial_get6pInfo(uint8_t commandId, uint8_t* code,uint8_t* cellOptions,\nvoid openserial_handleCommands(void);\n// misc\n-void openserial_board_reset_c...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-660. Add timer id parameter in opentimer callback.
491,609
28.06.2017 14:18:12
-7,200
9f01cc35b50bf969c642c6d2ff8b07d7975fd965
Implement replay protection.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.h", "new_path": "openapps/opencoap/opencoap.h", "diff": "@@ -150,7 +150,7 @@ typedef struct {\ntypedef struct {\nuint32_t bitArray;\n- uint16_t base;\n+ uint16_t rightEdge;\n} replay_window_t;\ntypedef struct {\n" }, { "chang...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Implement replay protection.
491,609
28.06.2017 16:32:56
-7,200
7523935b6f5e3bca48978b866ed39e6bfcec9328
Implement senderID and recipientID construction as per minimal-security-03 draft.
[ { "change_type": "MODIFY", "old_path": "openapps/cjoin/cjoin.c", "new_path": "openapps/cjoin/cjoin.c", "diff": "#include \"IEEE802154E.h\"\n#include \"icmpv6rpl.h\"\n#include \"cbor.h\"\n+#include \"eui64.h\"\n//=========================== defines =========================================\n@@ -26,6 ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Implement senderID and recipientID construction as per minimal-security-03 draft.
491,609
28.06.2017 17:12:36
-7,200
9fd347321a7fbaf3bf236197e6b84becba2d766f
Set securityContext pointer to zero for other CoAP apps.
[ { "change_type": "MODIFY", "old_path": "openapps/c6t/c6t.c", "new_path": "openapps/c6t/c6t.c", "diff": "@@ -45,6 +45,7 @@ void c6t_init() {\nc6t_vars.desc.path1len = 0;\nc6t_vars.desc.path1val = NULL;\nc6t_vars.desc.componentID = COMPONENT_C6T;\n+ c6t_vars.desc.securityContext = NULL;\nc6t_vars.desc...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Set securityContext pointer to zero for other CoAP apps.
491,609
29.06.2017 10:14:31
-7,200
d5fa31102a18b26d5e59c46ae769e33edd943f00
Add options to Join Request according to minimal-security-03 draft.
[ { "change_type": "MODIFY", "old_path": "openapps/cjoin/cjoin.c", "new_path": "openapps/cjoin/cjoin.c", "diff": "@@ -30,6 +30,10 @@ static const uint8_t ipAddr_jce[] = {0xbb, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0\nstatic const uint8_t masterSecret[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Add options to Join Request according to minimal-security-03 draft.
491,609
29.06.2017 10:36:41
-7,200
c88a85d90f20ebc407da7a1f413b9d156d9476df
Use the joinKey for initializing OSCOAP security context.
[ { "change_type": "MODIFY", "old_path": "openapps/cjoin/cjoin.c", "new_path": "openapps/cjoin/cjoin.c", "diff": "@@ -39,6 +39,7 @@ static const uint8_t proxyScheme[] = \"coap\";\ncjoin_vars_t cjoin_vars;\n//=========================== prototypes ======================================\n+void cjoin_ini...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Use the joinKey for initializing OSCOAP security context.
491,609
29.06.2017 11:38:28
-7,200
0a59f5ed4102afab0eb8165b5043edd2fc992f5f
Generalize option lookup function.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -120,7 +120,7 @@ void opencoap_receive(OpenQueueEntry_t* msg) {\n// process handled options\n//== Object Security Option\n- objectSecurity = opencoap_find_object_security_op...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Generalize option lookup function.
491,609
29.06.2017 13:07:46
-7,200
bcddc6b6623df8f1b8e026bdf00f9da6c95ee20c
Separate function to encode CoAP header.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "opencoap_vars_t opencoap_vars;\n//=========================== prototype =======================================\n+void opencoap_header_encode(OpenQueueEntry_t *msg,\n+ uint8_t ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Separate function to encode CoAP header.
491,595
29.06.2017 13:34:28
-7,200
1dc73617c4bb2aab56a91ced66ad6aaf7ae1bdf9
fix the metadata value in packet.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/sixtop.c", "new_path": "openstack/02b-MAChigh/sixtop.c", "diff": "@@ -289,7 +289,8 @@ void sixtop_request(\n// append 6p metadata\npacketfunctions_reserveHeaderSize(pkt,sizeof(uint16_t));\n- *((uint8_t*)(pkt->payload)) = sixtop_vars.cb_sf...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-602. fix the metadata value in packet.
491,609
29.06.2017 14:24:27
-7,200
25dd80ef188a002416c8948991bdd8a1aa95aef7
Handle proxy scheme option in CoAP. Implementation of proxy scheme in case of "6tisch.arpa" host name.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -24,6 +24,11 @@ void opencoap_header_encode(OpenQueueEntry_t *msg,\nuint16_t messageID,\nuint8_t *token);\n+void opencoap_handle_proxy_scheme(OpenQueueEntry_t *msg,\n+ coap_...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Handle proxy scheme option in CoAP. Implementation of proxy scheme in case of "6tisch.arpa" host name.
491,609
29.06.2017 16:17:55
-7,200
aa522a39d62c2fb79955a7e310e6146e6c06946a
Implement Stateless-Proxy option encoding.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "#include \"idmanager.h\"\n#include \"opentimers.h\"\n#include \"scheduler.h\"\n+#include \"cryptoengine.h\"\n//=========================== defines =============================...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Implement Stateless-Proxy option encoding.
491,609
30.06.2017 15:19:27
-7,200
33eb3cf395d80ed79da6dc451d335fd622322555
Handle Stateless-Proxy option and forward the Join Response to pledge.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "opencoap_vars_t opencoap_vars;\n+static const uint8_t ipAddr_jce[] = {0xbb, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \\\n+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01};\n+\...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Handle Stateless-Proxy option and forward the Join Response to pledge.
491,609
30.06.2017 16:11:37
-7,200
b75feeed9800bcdbac44cd0e2894d4a6ba6dd155
Externalize message forwarding.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -42,6 +42,14 @@ void opencoap_add_stateless_proxy_option(coap_option_iht* option,\nuint8_t* address,\nuint8_t addressLen,\nuint16_t portNumber);\n+\n+void opencoap_forward_m...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Externalize message forwarding.
491,609
30.06.2017 16:17:13
-7,200
6c4ab16ea1f50037dbe0493cf14ba5b133b92518
Reorder functions in opencoap.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -1008,50 +1008,6 @@ void opencoap_handle_proxy_scheme(OpenQueueEntry_t *msg,\nopencoap_forward_message(msg, header, outgoingOptions, outgoingOptionsLen, &opencoap_vars.JRCad...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Reorder functions in opencoap.
491,609
30.06.2017 16:47:11
-7,200
d16e6765106ce1277fbc2547a6a5761e01d3bd5d
Add helper function to recognize link-local IPv6 addresses.
[ { "change_type": "MODIFY", "old_path": "openstack/cross-layers/packetfunctions.c", "new_path": "openstack/cross-layers/packetfunctions.c", "diff": "@@ -162,6 +162,23 @@ bool packetfunctions_isAllHostsMulticast(open_addr_t* address) {\nreturn FALSE;\n}\n+bool packetfunctions_isLinkLocal(open_addr_t* ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Add helper function to recognize link-local IPv6 addresses.
491,595
03.07.2017 13:10:59
-7,200
6061c0f719ee761ba656ee6a53a2414e09e3c419
dio needs to be generated with randomly period to avoid collision.
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/icmpv6rpl.c", "new_path": "openstack/03b-IPv6/icmpv6rpl.c", "diff": "@@ -83,9 +83,9 @@ void icmpv6rpl_init() {\nicmpv6rpl_vars.timerIdDIO = opentimers_create();\nopentimers_scheduleIn(\nicmpv6rpl_vars.timerIdDIO,\n- icmpv6rpl_vars.dioPeriod,...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-635. dio needs to be generated with randomly period to avoid collision.
491,609
03.07.2017 18:44:52
-7,200
2c4f88910ebfb2804cf81f31ea73202c8d4130fd
Remove the need for explicit setting of JRC address in opencoap.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "#include \"opentimers.h\"\n#include \"scheduler.h\"\n#include \"cryptoengine.h\"\n+#include \"icmpv6rpl.h\"\n//=========================== defines =============================...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Remove the need for explicit setting of JRC address in opencoap.
491,609
04.07.2017 13:46:43
-7,200
afbe7111620d3f0f84449ba16ad4c038e1ff07cf
Minimal implementation of 15.4 security processing.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154_security.c", "new_path": "openstack/02a-MAClow/IEEE802154_security.c", "diff": "@@ -34,135 +34,18 @@ ieee802154_security_vars_t ieee802154_security_vars;\n//=========================== prototypes ================================...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Minimal implementation of 15.4 security processing.
491,609
04.07.2017 15:11:06
-7,200
69dfc4a771b9f47d34be5f47fbc883bf7d2a4ba4
Add function in neighbors module to select Join Proxy.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/neighbors.c", "new_path": "openstack/02b-MAChigh/neighbors.c", "diff": "@@ -94,6 +94,31 @@ open_addr_t* neighbors_getKANeighbor(uint16_t kaPeriod) {\nreturn NULL;\n}\n+/**\n+\\brief Find neighbor which should act as a Join Proxy during th...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Add function in neighbors module to select Join Proxy.
491,609
04.07.2017 16:13:44
-7,200
9d5bda45fe4fb32b0720d11ca233d2e12d804d56
Make L2 security key configuration dynamic.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154_security.c", "new_path": "openstack/02a-MAClow/IEEE802154_security.c", "diff": "#ifdef L2_SECURITY_ACTIVE\n//=========================== variables =======================================\n-static const uint8_t key1[] = {\n- 0x11...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Make L2 security key configuration dynamic.
491,595
05.07.2017 10:54:25
-7,200
20702d4f9a183cf8ebdc451c41e15034d1582322
Use 10milisecond slotduration for openmote-cc2538 by default.
[ { "change_type": "MODIFY", "old_path": "bsp/boards/openmote-cc2538/board_info.h", "new_path": "bsp/boards/openmote-cc2538/board_info.h", "diff": "#define PORT_PIN_RADIO_RESET_LOW() // nothing\n//===== IEEE802154E timing\n+\n+#define SLOTDURATION_10MS // by default, we use 10ms time slot\n+\n#ifdef S...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
Use 10milisecond slotduration for openmote-cc2538 by default.
491,609
05.07.2017 16:08:50
-7,200
ed8e44ffc76ba6d421a89e85cd687d2f56d707dd
Add function to get current security level.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154_security.c", "new_path": "openstack/02a-MAClow/IEEE802154_security.c", "diff": "@@ -461,6 +461,13 @@ bool IEEE802154_security_isConfigured() {\nreturn FALSE;\n}\n+uint8_t IEEE802154_security_getSecurityLevel() {\n+ if (IEEE80215...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Add function to get current security level.
491,609
05.07.2017 16:10:46
-7,200
09b208f97735649adee008a107bfdcee877baef8
Init the prefix to link-local and send with link-local prefix to link-local addresses.
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/forwarding.c", "new_path": "openstack/03b-IPv6/forwarding.c", "diff": "@@ -60,6 +60,7 @@ owerror_t forwarding_send(OpenQueueEntry_t* msg) {\nipv6_header_iht ipv6_outer_header;\nipv6_header_iht ipv6_inner_header;\nrpl_option_ht rpl_option;\n+...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Init the prefix to link-local and send with link-local prefix to link-local addresses.
491,609
05.07.2017 18:23:27
-7,200
34c39a34d3db1f545cbbac0618beb20fcdf2128f
Add functinality to neighbors module to check whether a neighbor is secure or not.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/neighbors.c", "new_path": "openstack/02b-MAChigh/neighbors.c", "diff": "@@ -17,7 +17,8 @@ void registerNewNeighbor(\nint8_t rssi,\nasn_t* asnTimestamp,\nbool joinPrioPresent,\n- uint8_t joinPrio\n+ uint8_t joinPrio,\n+ bool insecure\n);\n...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Add functinality to neighbors module to check whether a neighbor is secure or not.
491,609
05.07.2017 18:24:53
-7,200
5a8afc633594b1bafaaaa32f246d7fa9058ed1b7
Modify getSecurityLevel to query whether a neighbor is secure or not.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154_security.c", "new_path": "openstack/02a-MAClow/IEEE802154_security.c", "diff": "#include \"IEEE802154E.h\"\n#include \"idmanager.h\"\n#include \"openserial.h\"\n+#include \"neighbors.h\"\n#include \"IEEE802154_security.h\"\n//==...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Modify getSecurityLevel to query whether a neighbor is secure or not.
491,609
05.07.2017 18:26:19
-7,200
d7497bf790dc26b58eeef310f37389917d8b3a09
When sending, use proper SAC and DAC flags from RFC6282.
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/forwarding.c", "new_path": "openstack/03b-IPv6/forwarding.c", "diff": "@@ -71,8 +71,10 @@ owerror_t forwarding_send(OpenQueueEntry_t* msg) {\nopen_addr_t* p_src;\nopen_addr_t temp_src_prefix;\nopen_addr_t temp_src_mac64b;\n+ bool sac;\nuint8...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. When sending, use proper SAC and DAC flags from RFC6282.
491,609
05.07.2017 18:32:53
-7,200
5f14b85eb304e4cd490361458456c865e536b971
Get the join proxy from neighbors module and send join request according to minimal-security-03 draft.
[ { "change_type": "MODIFY", "old_path": "openapps/cjoin/cjoin.c", "new_path": "openapps/cjoin/cjoin.c", "diff": "#include \"scheduler.h\"\n#include \"idmanager.h\"\n#include \"IEEE802154E.h\"\n+#include \"IEEE802154_security.h\"\n#include \"icmpv6rpl.h\"\n#include \"cbor.h\"\n#include \"eui64.h\"\n+#...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Get the join proxy from neighbors module and send join request according to minimal-security-03 draft.
491,609
05.07.2017 18:33:39
-7,200
d112098d66ee26edeaed0225d50d5c6bd137cbd3
Add missing error code for join process and insecure variable to neighbors.
[ { "change_type": "MODIFY", "old_path": "inc/opendefs.h", "new_path": "inc/opendefs.h", "diff": "@@ -259,6 +259,7 @@ enum {\nERR_BUFFER_OVERFLOW = 0x44, // OSCOAP buffer overflow detected {code location {0}}\nERR_REPLAY_FAILED = 0x45, // OSCOAP replay protection failed\nERR_DECRYPTION_FAILED = 0x46, ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Add missing error code for join process and insecure variable to neighbors.
491,609
06.07.2017 10:25:57
-7,200
4b56ccb30567160151a6900209f5ec1f4379dc63
Send EBs only once joined and DAO was sent.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/sixtop.c", "new_path": "openstack/02b-MAChigh/sixtop.c", "diff": "@@ -688,8 +688,13 @@ port_INLINE void sixtop_sendEB() {\nOpenQueueEntry_t* eb;\nuint8_t i;\n- if ((ieee154e_isSynch()==FALSE) || (icmpv6rpl_getMyDAGrank()==DEFAULTDAGRANK) ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Send EBs only once joined and DAO was sent.
491,609
06.07.2017 13:32:54
-7,200
e7f1a1aa76f84f96ce260ee26b15d7b5dd03699b
Allow network to form by accepting unsecured L2 frames from pledges.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154.c", "new_path": "openstack/02a-MAClow/IEEE802154.c", "diff": "@@ -328,14 +328,13 @@ void ieee802154_retrieveHeader(OpenQueueEntry_t* msg,\nreturn; //invalid packet accordint to p.64 IEEE15.4e\n}\n- // security decision tree.\n- ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Allow network to form by accepting unsecured L2 frames from pledges.
491,609
06.07.2017 15:26:02
-7,200
88ec0a086a0a170e96f0546b41cb419188f0805b
Update cjoin timer callbacks and fix indent.
[ { "change_type": "MODIFY", "old_path": "openapps/cjoin/cjoin.c", "new_path": "openapps/cjoin/cjoin.c", "diff": "@@ -45,13 +45,12 @@ owerror_t cjoin_receive(OpenQueueEntry_t* msg,\ncoap_option_iht* coap_incomingOptions,\ncoap_option_iht* coap_outgoingOptions,\nuint8_t* coap_outgoingOptionsLen);\n-\n-...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Update cjoin timer callbacks and fix indent.
491,609
06.07.2017 16:58:49
-7,200
0143eadbc2a8bb128a56f7e2679c797c23470433
Remove SHA-related warnings.
[ { "change_type": "MODIFY", "old_path": "openstack/cross-layers/usha.c", "new_path": "openstack/cross-layers/usha.c", "diff": "@@ -67,21 +67,9 @@ int USHAInput(USHAContext *context,\n{\nif (!context) return shaNull;\nswitch (context->whichSha) {\n- /* case SHA1:\n- return SHA1Input((SHA1Context*)&con...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Remove SHA-related warnings.
491,609
06.07.2017 17:10:11
-7,200
3df17972bb2ba48374f7cdb52090dc211bd7b63e
Rename 802154 key struct.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154_security.h", "new_path": "openstack/02a-MAClow/IEEE802154_security.h", "diff": "typedef struct{\nuint8_t index;\nuint8_t value[16];\n-} key_t;\n+} symmetric_key_802154_t;\n//=========================== variables ================...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Rename 802154 key struct.
491,595
06.07.2017 17:18:50
-7,200
eb54a73103134a0f731301d45f2769ab1471216e
copy the key rather than set.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154_security.c", "new_path": "openstack/02a-MAClow/IEEE802154_security.c", "diff": "@@ -140,7 +140,7 @@ void IEEE802154_security_init(void) {\n//copy key2\nmemset(&ieee802154_security_vars.Key_2[0], 0, 16);\n- memset(&ieee802154_sec...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
copy the key rather than set.
491,609
06.07.2017 19:01:00
-7,200
2d66b2de589a107e0516fe06f53e76fb1ae7c5ec
Remove dependency on cjoin in openserial and move info to idmanager.
[ { "change_type": "MODIFY", "old_path": "drivers/common/openserial.c", "new_path": "drivers/common/openserial.c", "diff": "#include \"icmpv6rpl.h\"\n#include \"icmpv6echo.h\"\n#include \"sf0.h\"\n-#include \"cjoin.h\"\n//=========================== variables =======================================\n@...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Remove dependency on cjoin in openserial and move info to idmanager.
491,609
07.07.2017 10:30:35
-7,200
3eec023c59974a4ea2f07f7fd79996dcf661cd59
Add missing function to macpong.
[ { "change_type": "MODIFY", "old_path": "projects/common/03oos_macpong/03oos_macpong.c", "new_path": "projects/common/03oos_macpong/03oos_macpong.c", "diff": "@@ -168,6 +168,9 @@ bool icmpv6rpl_isPreferredParent(open_addr_t* address) {\ndagrank_t icmpv6rpl_getMyDAGrank(void) {\nreturn 0;\n}\n+bool ic...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Add missing function to macpong.
491,609
07.07.2017 11:27:55
-7,200
25e451325c6024710dc8b158a8ff08076dadaac1
Init coap only if there are some apps to initialize.
[ { "change_type": "MODIFY", "old_path": "openapps/SConscript", "new_path": "openapps/SConscript", "diff": "@@ -47,8 +47,11 @@ else:\n# union of default and additional apps (without duplicates)\napps = ['opencoap']\napps += sorted(list(set(defaultApps+userApps)))\n+if userApps:\nappsInit = ['opencoap'...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Init coap only if there are some apps to initialize.
491,595
09.07.2017 11:15:42
-7,200
07b3a3dbd012c9886232e2e97def8e2ed13ff86b
format the function.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154E.c", "new_path": "openstack/02a-MAClow/IEEE802154E.c", "diff": "@@ -1653,7 +1653,6 @@ port_INLINE void activity_ri4(PORT_TIMER_WIDTH capturedTime) {\n}\nport_INLINE void activity_rie3() {\n-\n// log the error\nopenserial_printEr...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-661. format the function.
491,609
10.07.2017 11:10:03
-7,200
b35eab3d42b3a74617a8ae47f443da6aee1654d8
Use stateless compression mode for DIOs.
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/forwarding.c", "new_path": "openstack/03b-IPv6/forwarding.c", "diff": "@@ -104,7 +104,9 @@ owerror_t forwarding_send(OpenQueueEntry_t* msg) {\nmsg->l3_sourceAdd.type=ADDR_128B;\n// if we are sending to a link-local address set the source pre...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Use stateless compression mode for DIOs.
491,595
10.07.2017 14:28:43
-7,200
e3b7d4ff1de02d19f61d3c8514f19433fcd09e56
6TOP should filter the to be added cells with slotOffset larger than slotframe length.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/schedule.c", "new_path": "openstack/02b-MAChigh/schedule.c", "diff": "@@ -455,6 +455,11 @@ bool schedule_isSlotOffsetAvailable(uint16_t slotOffset){\nINTERRUPT_DECLARATION();\nDISABLE_INTERRUPTS();\n+ if (slotOffset>=schedule_vars.frameLe...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-662. 6TOP should filter the to be added cells with slotOffset larger than slotframe length.
491,595
10.07.2017 18:18:02
-7,200
67ceefe831ffc1380596312585ede58e90b07045
check tobedelete celllist in sixtop request; remove schedule housekeeping function.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/schedule.c", "new_path": "openstack/02b-MAChigh/schedule.c", "diff": "@@ -825,44 +825,6 @@ void schedule_indicateTx(asn_t* asnTimestamp, bool succesfullTx) {\nENABLE_INTERRUPTS();\n}\n-\n-void schedule_housekeeping(){\n- uint8_t i;\n- ope...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-663. check tobedelete celllist in sixtop request; remove schedule housekeeping function.
491,595
10.07.2017 18:35:19
-7,200
b192e426984a8f68482ed43382be2a20d0aef614
update source code version.
[ { "change_type": "MODIFY", "old_path": "inc/opendefs.h", "new_path": "inc/opendefs.h", "diff": "static const uint8_t infoStackName[] = \"OpenWSN \";\n#define OPENWSN_VERSION_MAJOR 1\n-#define OPENWSN_VERSION_MINOR 9\n+#define OPENWSN_VERSION_MINOR 11\n#define OPENWSN_VERSION_PATCH 0\n#ifndef TRUE\n"...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-664. update source code version.
491,595
10.07.2017 19:46:14
-7,200
da5d854338da7086f812b61b379b961887689c89
remove the comments.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/schedule.c", "new_path": "openstack/02b-MAChigh/schedule.c", "diff": "@@ -64,7 +64,6 @@ void schedule_startDAGroot() {\nmemset(&temp_neighbor,0,sizeof(temp_neighbor));\ntemp_neighbor.type = ADDR_ANYCAST;\nfor (running_slotOffset=start_slo...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-540. remove the comments.
491,595
11.07.2017 09:52:31
-7,200
1ddfef23f2ba35cddf8bb793e81bdf8b5b2872fe
remove opentcp files.
[ { "change_type": "DELETE", "old_path": "openstack/04-TRAN/opentcp.c", "new_path": null, "diff": "-#include \"opendefs.h\"\n-#include \"opentcp.h\"\n-#include \"openserial.h\"\n-#include \"openqueue.h\"\n-#include \"forwarding.h\"\n-#include \"packetfunctions.h\"\n-#include \"scheduler.h\"\n-// appli...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-631. remove opentcp files.
491,609
11.07.2017 10:56:54
-7,200
46a4bda461edc7f2bf1dbe1c65a095168605ac14
Move libs to opencoap and aes/ccm to boards/common.
[ { "change_type": "RENAME", "old_path": "openstack/cross-layers/openaes.c", "new_path": "bsp/boards/common/openaes.c", "diff": "" }, { "change_type": "RENAME", "old_path": "openstack/cross-layers/openaes.h", "new_path": "bsp/boards/common/openaes.h", "diff": "" }, { "chang...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Move libs to opencoap and aes/ccm to boards/common.
491,609
11.07.2017 11:39:25
-7,200
d9ecaf50fc6f06e605afe7abadeb487d26a59d9f
Build openaes and openccm as part of boards/common.
[ { "change_type": "MODIFY", "old_path": "bsp/boards/SConscript", "new_path": "bsp/boards/SConscript", "diff": "@@ -14,15 +14,24 @@ sources_h = [\n'radio.h',\n'uart.h',\n'sctimer.h',\n+ os.path.join('common', 'openccms.h'),\n+ os.path.join('common', 'openaes.h'),\n]\n+sources_c = [\n+ os.path.join('co...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Build openaes and openccm as part of boards/common.
491,595
11.07.2017 14:07:32
-7,200
9b3030c114c7456bfd0782df16ca05c4369aee68
Using opentimers_scheduleIn rather than opentimers_scheduleAbsolute for sixtop timeout timer.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/sixtop.c", "new_path": "openstack/02b-MAChigh/sixtop.c", "diff": "@@ -900,11 +900,11 @@ void sixtop_six2six_sendDone(OpenQueueEntry_t* msg, owerror_t error){\nbreak;\n}\n// start timeout timer if I am waiting for a response\n- opentimers_...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
Using opentimers_scheduleIn rather than opentimers_scheduleAbsolute for sixtop timeout timer.
491,609
11.07.2017 15:39:23
-7,200
2366f1faa8e5e6d133ca0c26d21a13f5e36f42b7
Skip set join if already set.
[ { "change_type": "MODIFY", "old_path": "openapps/cjoin/cjoin.c", "new_path": "openapps/cjoin/cjoin.c", "diff": "@@ -292,6 +292,10 @@ void cjoin_setIsJoined(bool newValue) {\nuint8_t array[5];\nasn_t joinAsn;\n+ if (cjoin_vars.isJoined == newValue) {\n+ return;\n+ }\n+\ncjoin_vars.isJoined = newValue...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Skip set join if already set.
491,595
12.07.2017 08:56:17
-7,200
77b95556b48862de04cde5925eef390b269025bc
use another timer for serial inhibit activity.
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154E.c", "new_path": "openstack/02a-MAClow/IEEE802154E.c", "diff": "@@ -156,6 +156,7 @@ void ieee154e_init() {\n// radiotimer_start(ieee154e_vars.slotDuration);\n//\nIEEE802154_security_init();\n+ ieee154e_vars.serialInhibitTimerId ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-540. use another timer for serial inhibit activity.
491,592
12.07.2017 15:47:33
-7,200
3f6c13e1f325894c9e5b3209728a84c8979a6ae3
Adding right Flash page for Revision A of OPenMote. Implementing also some led functionalities.
[ { "change_type": "MODIFY", "old_path": "SConscript", "new_path": "SConscript", "diff": "@@ -201,6 +201,7 @@ elif env['toolchain']=='armgcc':\nif env['board']=='openmote-cc2538':\nif env['revision'] == \"A1\":\nlinker_file = 'cc2538sf23.lds'\n+ print \"*** OPENMOTE CC2538 REV. A1 ***\\n\"\nelse:\nlin...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-665 Adding right Flash page for Revision A of OPenMote. Implementing also some led functionalities.
491,592
12.07.2017 16:11:43
-7,200
22525df55911be2227d0c89de4b7f0e56e8377a9
preventing undesired interrupts from non initialized button in OM-cc2538 boot
[ { "change_type": "MODIFY", "old_path": "bsp/boards/openmote-cc2538/board.c", "new_path": "bsp/boards/openmote-cc2538/board.c", "diff": "@@ -55,6 +55,8 @@ static void SysCtrlWakeupSetting(void);\nstatic void GPIO_C_Handler(void);\n+bool user_button_initialized;\n+\n//=========================== main ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-665 preventing undesired interrupts from non initialized button in OM-cc2538 boot
491,609
12.07.2017 16:23:45
-7,200
90415f7b8ff25ce6cd8f0ee4c28ad27261552f1d
Use link-local prefix to forward the response to the pledge.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/opencoap.c", "new_path": "openapps/opencoap/opencoap.c", "diff": "@@ -1019,7 +1019,7 @@ void opencoap_handle_stateless_proxy(OpenQueueEntry_t *msg,\nuint8_t outgoingOptionsLen;\nopen_addr_t eui64;\nopen_addr_t destIP;\n- open_addr_t* prefix;\...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-651. Use link-local prefix to forward the response to the pledge.
491,595
12.07.2017 18:51:41
-7,200
34b4db5641a146fcd86fd8bb74732891f91ddf2d
no CTS setting for simulation.
[ { "change_type": "MODIFY", "old_path": "bsp/boards/python/uart_obj.c", "new_path": "bsp/boards/python/uart_obj.c", "diff": "@@ -287,10 +287,10 @@ uint8_t uart_readByte(OpenMote* self) {\n#ifdef FASTSIM\nvoid uart_setCTS(OpenMote* self, bool state) {\n- printf(\"[CRITICAL] uart_writeByte() should not...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-540. no CTS setting for simulation.
491,595
13.07.2017 15:21:56
-7,200
6ccc7cbe0e718ce2be3a770c879aa88ebb9c1a86
port on msp430 platform.
[ { "change_type": "MODIFY", "old_path": "bsp/boards/gina/uart.c", "new_path": "bsp/boards/gina/uart.c", "diff": "typedef struct {\nuart_tx_cbt txCb;\nuart_rx_cbt rxCb;\n+ bool fXonXoffEscaping;\n+ uint8_t xonXoffEscapedByte;\n} uart_vars_t;\nuart_vars_t uart_vars;\n@@ -61,9 +63,23 @@ void uart_clearT...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-540. port on msp430 platform.
491,595
13.07.2017 16:10:47
-7,200
233f5e788d873d99bd59b2e0438ec5d6bfc16812
port to stm32 platform.
[ { "change_type": "MODIFY", "old_path": "bsp/boards/iot-lab_A8-M3/uart.c", "new_path": "bsp/boards/iot-lab_A8-M3/uart.c", "diff": "typedef struct {\nuart_tx_cbt txCb;\nuart_rx_cbt rxCb;\n+ bool fXonXoffEscaping;\n+ uint8_t xonXoffEscapedByte;\n} uart_vars_t;\nuart_vars_t uart_vars;\n@@ -95,9 +97,24 @...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-540. port to stm32 platform.
491,595
13.07.2017 16:17:30
-7,200
6409d5b02c36df17458fab0d2d2e0f9e6412c1c2
port to samr21_xpro.
[ { "change_type": "MODIFY", "old_path": "bsp/boards/samr21_xpro/uart.c", "new_path": "bsp/boards/samr21_xpro/uart.c", "diff": "typedef struct {\nuart_tx_cbt txCb;\nuart_rx_cbt rxCb;\n+ bool fXonXoffEscaping;\n+ uint8_t xonXoffEscapedByte;\nuint8_t startOrend;\nuint8_t flagByte;\n} uart_vars_t;\n@@ -6...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-540. port to samr21_xpro.
491,595
13.07.2017 16:23:06
-7,200
220a7f7e303c98387d91a3415be2b71c83de1487
port to agilefox.
[ { "change_type": "MODIFY", "old_path": "bsp/boards/agilefox/uart.c", "new_path": "bsp/boards/agilefox/uart.c", "diff": "typedef struct {\nuart_tx_cbt txCb;\nuart_rx_cbt rxCb;\n+ bool fXonXoffEscaping;\n+ uint8_t xonXoffEscapedByte;\nuint8_t startOrend;\nuint8_t flagByte;\n} uart_vars_t;\n@@ -32,8 +3...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-540. port to agilefox.
491,595
13.07.2017 16:48:44
-7,200
1f22e79efb75478f62b00987d56e762ed43083d3
fix scons docs warning
[ { "change_type": "MODIFY", "old_path": "docs/Doxyfile", "new_path": "docs/Doxyfile", "diff": "@@ -749,12 +749,10 @@ INPUT = . \\\n../kernel/openos \\\n../drivers/common \\\n../bsp/boards/board.h \\\n- ../bsp/boards/bsp_timer.h \\\n../bsp/boards/debugpins.h \\\n../bsp/boards/eui64.h \\\n../bsp/boards...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-540. fix scons docs warning
491,595
13.07.2017 21:51:28
-7,200
61890e2f4073c972c33768dd312cf0893b359e9b
update the ASN and counter payload position.
[ { "change_type": "MODIFY", "old_path": "openapps/uinject/uinject.py", "new_path": "openapps/uinject/uinject.py", "diff": "@@ -13,8 +13,8 @@ while True:\nhisAddress = dist_addr[0]\nhisPort = dist_addr[1]\n- asn = struct.unpack('<HHB',request[:5])\n- counter = struct.unpack('<h',request[-2:])[0]\n+ as...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
update the ASN and counter payload position.
491,600
14.07.2017 15:13:08
-7,200
23963bde3431d272d46dc8e64bc3b383bc6235d9
hotfix to fix IAR build
[ { "change_type": "MODIFY", "old_path": "openapps/csensors/csensors.c", "new_path": "openapps/csensors/csensors.c", "diff": "@@ -216,7 +216,7 @@ owerror_t csensors_receive(\n}\ncsensors_fillpayload(msg,id);\n// add return option\n- csensor_vars.medType = COAP_MEDTYPE_APPOCTETSTREM;\n+ csensors_vars.m...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
hotfix to fix IAR build
491,600
14.07.2017 15:16:37
-7,200
98c0666caaddefd35f123138e0a1946947ff86f6
HOTFIX: remove most apps by default
[ { "change_type": "MODIFY", "old_path": "openapps/openapps.c", "new_path": "openapps/openapps.c", "diff": "@@ -34,17 +34,17 @@ void openapps_init(void) {\nopencoap_init(); // initialize before any of the CoAP applications\n// CoAP\n- c6t_init();\n+ //c6t_init();\ncinfo_init();\ncleds__init();\n- cjoi...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
HOTFIX: remove most apps by default
491,609
14.07.2017 18:30:19
-7,200
715f5e111e76d0d95454033cd26d86675317a320
Fix key identifier passed in AAD of OSCOAP.
[ { "change_type": "MODIFY", "old_path": "openapps/opencoap/openoscoap.c", "new_path": "openapps/opencoap/openoscoap.c", "diff": "@@ -188,8 +188,14 @@ owerror_t openoscoap_protect_message(\nrequestSeq = &partialIV[AES_CCM_16_64_128_IV_LEN - 2];\nrequestSeqLen = openoscoap_convert_sequence_number(seque...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-667. Fix key identifier passed in AAD of OSCOAP.
491,595
14.07.2017 19:07:48
-7,200
acc0267aac2580bd1aa61685354189ae718f7314
6pList fixed.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/sixtop.c", "new_path": "openstack/02b-MAChigh/sixtop.c", "diff": "@@ -270,11 +270,13 @@ void sixtop_request(\nif (code == IANA_6TOP_CMD_LIST){\n// append 6p max number of cells\npacketfunctions_reserveHeaderSize(pkt,sizeof(uint16_t));\n- ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
6pList fixed.
491,592
15.07.2017 09:12:37
-7,200
ae89980c56e387c6ef79679a58c2cdbc8b9ec44b
pio struct (WIP)
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/icmpv6rpl.c", "new_path": "openstack/03b-IPv6/icmpv6rpl.c", "diff": "@@ -82,6 +82,20 @@ void icmpv6rpl_init() {\nicmpv6rpl_vars.dioPeriod = TIMER_DIO_TIMEOUT;\nicmpv6rpl_vars.timerIdDIO = opentimers_create();\n+\n+ //initialize PIO -> move t...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-668 pio struct (WIP)
491,592
15.07.2017 10:38:13
-7,200
dcf22df6866a687272ab2baf1302ee043209e300
PIO integration in the DIO
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/icmpv6rpl.c", "new_path": "openstack/03b-IPv6/icmpv6rpl.c", "diff": "@@ -90,11 +90,20 @@ void icmpv6rpl_init() {\nicmpv6rpl_vars.pio.flags = 96;\nicmpv6rpl_vars.pio.plifetime = 0xFFFFFFFF;\nicmpv6rpl_vars.pio.vlifetime = 0xFFFFFFFF;\n+ // if...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-668 PIO integration in the DIO
491,592
15.07.2017 11:25:50
-7,200
96cf5e382404697141a099940022c576726604d8
getting prefix from PIO and not from DODAGID
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/icmpv6rpl.c", "new_path": "openstack/03b-IPv6/icmpv6rpl.c", "diff": "@@ -229,7 +229,6 @@ void icmpv6rpl_sendDone(OpenQueueEntry_t* msg, owerror_t error) {\n*/\nvoid icmpv6rpl_receive(OpenQueueEntry_t* msg) {\nuint8_t icmpv6code;\n- open_addr...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-668 getting prefix from PIO and not from DODAGID
491,595
15.07.2017 19:14:40
-7,200
40f5ec98f33fcde17c6aa5e3f1ef1ab2eee3bbb9
6P LIST command should return EOL when the last cell is presented in the request command.
[ { "change_type": "MODIFY", "old_path": "openstack/02b-MAChigh/sixtop.c", "new_path": "openstack/02b-MAChigh/sixtop.c", "diff": "@@ -1203,6 +1203,18 @@ void sixtop_six2six_notifyReceive(\nbreak;\n}\n}\n+ if (\n+ schedule_getOneCellAfterOffset(\n+ metadata,\n+ startingOffset,\n+ &(pkt->l2_nextORprevio...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-670. 6P LIST command should return EOL when the last cell is presented in the request command.
491,600
16.07.2017 11:06:01
-7,200
e372467f89dcd4f44435e6cf6b38a1b2de0e83fc
Fixing OpenMote IAR builds (WIP).
[ { "change_type": "ADD", "old_path": null, "new_path": "bsp/boards/common/README.md", "diff": "+Software implementation of AES and CCM*.\n+\n+Not used if the board have hardware-based security.\n\\ No newline at end of file\n" }, { "change_type": "MODIFY", "old_path": "projects/openmote-c...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-672. Fixing OpenMote IAR builds (WIP).
491,592
16.07.2017 12:03:48
-7,200
7d2ef547c5559e431e54f2423f421c77aa8483d8
fixing rank in dio
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/icmpv6rpl.c", "new_path": "openstack/03b-IPv6/icmpv6rpl.c", "diff": "@@ -367,7 +367,6 @@ void icmpv6rpl_updateMyDAGrankAndParentSelection() {\nreturn;\n}\n}\n-\n// prep for loop, remember state before neighbor table scanning\nprevParentIndex...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-669 fixing rank in dio
491,600
16.07.2017 16:54:18
-7,200
b658c7a17f18be0938c006f42fd1173eb41bcc65
radio_rx project.
[ { "change_type": "MODIFY", "old_path": "projects/common/01bsp_radio_rx/01bsp_radio_rx.c", "new_path": "projects/common/01bsp_radio_rx/01bsp_radio_rx.c", "diff": "@@ -68,6 +68,7 @@ len=17 num=84 rssi=-81 lqi=108 crc=1\n#include \"radio.h\"\n#include \"leds.h\"\n#include \"uart.h\"\n+#include \"sctime...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-678. radio_rx project.
491,600
16.07.2017 16:58:58
-7,200
8195dadb98dbee65e4b34c4e6fa7dc78b7b652d7
radio_tx project
[ { "change_type": "MODIFY", "old_path": "projects/common/01bsp_radio_tx/01bsp_radio_tx.c", "new_path": "projects/common/01bsp_radio_tx/01bsp_radio_tx.c", "diff": "@@ -17,7 +17,7 @@ remainder of the packet contains an incrementing bytes.\n#include \"board.h\"\n#include \"radio.h\"\n#include \"leds.h\"...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-678. radio_tx project
491,592
16.07.2017 17:27:44
-7,200
0852f1f989bb887e0b01dbe04be6c87fcde05714
adding configuration option
[ { "change_type": "MODIFY", "old_path": "openstack/03b-IPv6/icmpv6rpl.c", "new_path": "openstack/03b-IPv6/icmpv6rpl.c", "diff": "@@ -84,7 +84,7 @@ void icmpv6rpl_init() {\nicmpv6rpl_vars.timerIdDIO = opentimers_create();\n//initialize PIO -> move this to dagroot code\n- icmpv6rpl_vars.pio.type = 0x08...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-679 adding configuration option
491,597
17.07.2017 14:53:46
-28,800
1060f9b7155cb7871ded0d48e5578b32c07bf393
Easy channel hopping template modify
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154E.c", "new_path": "openstack/02a-MAClow/IEEE802154E.c", "diff": "@@ -772,7 +772,7 @@ port_INLINE bool ieee154e_processIEs(OpenQueueEntry_t* pkt, uint16_t* lenIE) {\ninfer the asnOffset based on the fact that\nieee154e_vars.freq =...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-666 Easy channel hopping template modify
491,595
17.07.2017 15:58:10
-7,200
9dae5fd7789418a0af48d5d499845fc0ee697383
Using link local address when destination is broadcast or multicast. Flip the pin when ipv6 address coming from eui64.
[ { "change_type": "DELETE", "old_path": "openstack/02b-MAChigh/processIE.h", "new_path": null, "diff": "-#ifndef __PROCESSIE_H\n-#define __PROCESSIE_H\n-\n-#include \"opendefs.h\"\n-\n-//=========================== define ==========================================\n-\n-// maximum of cells in a Schedu...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-680. Using link local address when destination is broadcast or multicast. Flip the pin when ipv6 address coming from eui64.
491,595
18.07.2017 16:22:31
-7,200
c58a14320cbf4cd6a5a05000512bb6547b16bd04
fix bsp_radio project.
[ { "change_type": "MODIFY", "old_path": "projects/common/01bsp_radio/01bsp_radio.c", "new_path": "projects/common/01bsp_radio/01bsp_radio.c", "diff": "@@ -43,8 +43,6 @@ typedef enum {\n} app_state_t;\ntypedef struct {\n- uint8_t num_radioTimerOverflows;\n- uint8_t num_radioTimerCompare;\nuint8_t num_...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-682. fix bsp_radio project.
491,595
19.07.2017 11:34:36
-7,200
47f7a0b8b4e154e2bf6ffd0c8379588d211d8408
revert checksum commits. fix the ping command.
[ { "change_type": "MODIFY", "old_path": "openstack/cross-layers/packetfunctions.c", "new_path": "openstack/cross-layers/packetfunctions.c", "diff": "@@ -43,7 +43,6 @@ void packetfunctions_mac64bToIp128b(\nip128bToWrite->type=ADDR_128B;\nmemcpy(&(ip128bToWrite->addr_128b[0]), &(prefix64b->prefix[0]), ...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-685. revert checksum commits. fix the ping command.
491,595
19.07.2017 19:45:16
-7,200
41aa706d324311c88fc16ed10b2d6d9a7a45234a
add .gitattributes file.
[ { "change_type": "ADD", "old_path": null, "new_path": ".gitattributes", "diff": "+# Set the default behavior, in case people don't have core.autocrlf set.\n+* text=auto\n+\n+# Explicitly declare text files you want to always be normalized and converted\n+# to native line endings on checkout.\n+*.c t...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-684. add .gitattributes file.
491,597
20.07.2017 15:37:14
-28,800
3a53287079ad7ddd9a03b54d061cd361fa14cac0
fix naming and indentation based on reviewer
[ { "change_type": "MODIFY", "old_path": "openstack/02a-MAClow/IEEE802154E.c", "new_path": "openstack/02a-MAClow/IEEE802154E.c", "diff": "@@ -772,7 +772,7 @@ port_INLINE bool ieee154e_processIEs(OpenQueueEntry_t* pkt, uint16_t* lenIE) {\ninfer the asnOffset based on the fact that\nieee154e_vars.freq =...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-666 fix naming and indentation based on reviewer
491,595
02.08.2017 10:25:47
-7,200
3d6f6af3d52eb1e6dfe705f808cc4e4fb66e1bd7
update CMD_SET_DAGROOT serial raw bytes.
[ { "change_type": "MODIFY", "old_path": "openapps/uinject/uinject_dagroot.py", "new_path": "openapps/uinject/uinject_dagroot.py", "diff": "@@ -118,7 +118,7 @@ class OpenHdlc(object):\nclass moteProbe(threading.Thread):\n- CMD_SET_DAGROOT = '7e5259bbbb0000000000000c347e'\n+ CMD_SET_DAGROOT = '7e5259bb...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-689. update CMD_SET_DAGROOT serial raw bytes.
491,595
02.08.2017 10:32:24
-7,200
07036099c5af4b965e9f6c1499babb9febffdbb4
remove .gitattributes temporally, added it back when cleaning PRs.
[ { "change_type": "DELETE", "old_path": ".gitattributes", "new_path": null, "diff": "-# Set the default behavior, in case people don't have core.autocrlf set.\n-* text=auto\n-\n-# Explicitly declare text files you want to always be normalized and converted\n-# to native line endings on checkout.\n-*....
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-684. remove .gitattributes temporally, added it back when cleaning PRs.
491,595
03.08.2017 00:06:04
-7,200
2c9a443e906bd6854d9cc8ba790f54aba6cf2940
Fix the checksum calculation.
[ { "change_type": "MODIFY", "old_path": "openstack/cross-layers/idmanager.h", "new_path": "openstack/cross-layers/idmanager.h", "diff": "#define ACTION_NO 'N'\n#define ACTION_TOGGLE 'T'\n+static const uint8_t linklocalprefix[] = {\n+ 0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00\n+};\n+\n//=========...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-680. Fix the checksum calculation.
491,595
03.08.2017 13:07:21
-7,200
b220ee2d423cdd90c21f7d74ba91b9884323298d
use global address calculating checksum when destination is not multi-cast address.
[ { "change_type": "MODIFY", "old_path": "openstack/cross-layers/packetfunctions.c", "new_path": "openstack/cross-layers/packetfunctions.c", "diff": "@@ -398,8 +398,6 @@ bool packetfunctions_checkCRC(OpenQueueEntry_t* msg) {\nvoid packetfunctions_calculateChecksum(OpenQueueEntry_t* msg, uint8_t* check...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-680. use global address calculating checksum when destination is not multi-cast address.
491,595
10.08.2017 16:08:39
-7,200
0f78d43546be2df2673ffaea6cc5612fa28d096f
fix bsp_uart, drv_openserial and oos_mercator projects error.
[ { "change_type": "MODIFY", "old_path": "projects/common/01bsp_uart/01bsp_uart.c", "new_path": "projects/common/01bsp_uart/01bsp_uart.c", "diff": "@@ -20,12 +20,12 @@ TeraTerm):\n// bsp modules required\n#include \"board.h\"\n#include \"uart.h\"\n-#include \"bsp_timer.h\"\n+#include \"sctimer.h\"\n#i...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-690. fix bsp_uart, drv_openserial and oos_mercator projects error.
491,595
14.08.2017 10:40:18
-7,200
552f9950bbb935e8b3943c9034b9ba5b8d886e3a
return success or failure of sixtop_request and remove sixtop handle/handler.
[ { "change_type": "MODIFY", "old_path": "drivers/common/openserial.c", "new_path": "drivers/common/openserial.c", "diff": "@@ -720,10 +720,6 @@ void openserial_handleCommands(void){\nif (foundNeighbor==FALSE) {\nbreak;\n}\n- if (sixtop_setHandler(SIX_HANDLER_SF0)==FALSE){\n- // one sixtop transcation...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-691. return success or failure of sixtop_request and remove sixtop handle/handler.
491,595
14.08.2017 10:58:47
-7,200
7c1763b81ff062304b50a4de356a3f7ee4230640
fix warning in oos_sniffer project.
[ { "change_type": "MODIFY", "old_path": "projects/common/03oos_sniffer/03oos_sniffer.c", "new_path": "projects/common/03oos_sniffer/03oos_sniffer.c", "diff": "@@ -201,8 +201,7 @@ owerror_t sixtop_request(\nuint8_t sfid,\nuint16_t listingOffset,\nuint16_t listingMaxNumCells\n-) {return;}\n-bool sixtop...
C
BSD 3-Clause New or Revised License
openwsn-berkeley/openwsn-fw
FW-691. fix warning in oos_sniffer project.