mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
81 lines
2.3 KiB
Diff
81 lines
2.3 KiB
Diff
From a7929873d1a941ddb5a9feb11912dae9d7992579 Mon Sep 17 00:00:00 2001
|
|
From: Mattia Antonini <mattia.antonini1@studenti.unipr.it>
|
|
Date: Wed, 2 Nov 2016 15:03:13 +0100
|
|
Subject: [PATCH] removed config.h
|
|
|
|
---
|
|
port/riot/config.h | 63 ------------------------------------------------------
|
|
1 file changed, 63 deletions(-)
|
|
delete mode 100644 port/riot/config.h
|
|
|
|
diff --git a/port/riot/config.h b/port/riot/config.h
|
|
deleted file mode 100644
|
|
index 49f7f7a..0000000
|
|
--- a/port/riot/config.h
|
|
+++ /dev/null
|
|
@@ -1,63 +0,0 @@
|
|
-/*
|
|
- // Copyright (c) 2016 Intel Corporation
|
|
- //
|
|
- // Licensed under the Apache License, Version 2.0 (the "License");
|
|
- // you may not use this file except in compliance with the License.
|
|
- // You may obtain a copy of the License at
|
|
- //
|
|
- // http://www.apache.org/licenses/LICENSE-2.0
|
|
- //
|
|
- // Unless required by applicable law or agreed to in writing, software
|
|
- // distributed under the License is distributed on an "AS IS" BASIS,
|
|
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
- // See the License for the specific language governing permissions and
|
|
- // limitations under the License.
|
|
- */
|
|
-
|
|
-#ifndef CONFIG_H
|
|
-#define CONFIG_H
|
|
-
|
|
-/* Time resolution */
|
|
-#include <stdint.h>
|
|
-typedef uint64_t oc_clock_time_t;
|
|
-/* 1 clock tick = 1ms */
|
|
-#define OC_CLOCK_CONF_TICKS_PER_SECOND (1000)
|
|
-
|
|
-#define OC_BYTES_POOL_SIZE (900)
|
|
-#define OC_INTS_POOL_SIZE (4)
|
|
-#define OC_DOUBLES_POOL_SIZE (4)
|
|
-
|
|
-/* Server-side parameters */
|
|
-/* Maximum number of server resources */
|
|
-#define MAX_APP_RESOURCES (1)
|
|
-
|
|
-/* Common paramters */
|
|
-/* Maximum number of concurrent requests */
|
|
-#define MAX_NUM_CONCURRENT_REQUESTS (2)
|
|
-
|
|
-/* Estimated number of nodes in payload tree structure */
|
|
-#define EST_NUM_REP_OBJECTS (60)
|
|
-
|
|
-/* Maximum size of request/response PDUs */
|
|
-#define MAX_PAYLOAD_SIZE (512)
|
|
-
|
|
-/* Number of devices on the OCF platform */
|
|
-#define MAX_NUM_DEVICES (1)
|
|
-
|
|
-/* Platform payload size */
|
|
-#define MAX_PLATFORM_PAYLOAD_SIZE (256)
|
|
-
|
|
-/* Device payload size */
|
|
-#define MAX_DEVICE_PAYLOAD_SIZE (256)
|
|
-
|
|
-/* Security layer */
|
|
-/* Maximum number of authorized clients */
|
|
-#define MAX_NUM_SUBJECTS (1)
|
|
-
|
|
-/* Maximum number of concurrent DTLS sessions */
|
|
-#define MAX_DTLS_PEERS (1)
|
|
-
|
|
-/* Max inactivity timeout before tearing down DTLS connection */
|
|
-#define DTLS_INACTIVITY_TIMEOUT (10)
|
|
-
|
|
-#endif /* CONFIG_H */
|
|
|