summaryrefslogtreecommitdiffstats
path: root/sdk-config/sdk/libraries
diff options
context:
space:
mode:
authorroot <root@lamia.panaceas.james.local>2015-08-31 10:29:39 +0100
committerroot <root@lamia.panaceas.james.local>2015-08-31 10:29:39 +0100
commit261436d22bc93338e08e67956a47142e3b0d5086 (patch)
treee8bac65ae594560000a1030ce33f21586d117d84 /sdk-config/sdk/libraries
downloadbootloader-261436d22bc93338e08e67956a47142e3b0d5086.tar.gz
bootloader-261436d22bc93338e08e67956a47142e3b0d5086.tar.bz2
bootloader-261436d22bc93338e08e67956a47142e3b0d5086.zip
working copy of sdks dfu bootloaderdualbank
Diffstat (limited to 'sdk-config/sdk/libraries')
-rw-r--r--sdk-config/sdk/libraries/hci/config/hci_mem_pool_internal.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/sdk-config/sdk/libraries/hci/config/hci_mem_pool_internal.h b/sdk-config/sdk/libraries/hci/config/hci_mem_pool_internal.h
new file mode 100644
index 0000000..945365e
--- /dev/null
+++ b/sdk-config/sdk/libraries/hci/config/hci_mem_pool_internal.h
@@ -0,0 +1,32 @@
+/* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
+ *
+ * The information contained herein is property of Nordic Semiconductor ASA.
+ * Terms and conditions of usage are described in detail in NORDIC
+ * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
+ *
+ * Licensees are granted free, non-transferable use of the information. NO
+ * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
+ * the file.
+ *
+ */
+
+/** @file
+ *
+ * @defgroup memory_pool_internal Memory Pool Internal
+ * @{
+ * @ingroup memory_pool
+ *
+ * @brief Memory pool internal definitions
+ */
+
+#ifndef MEM_POOL_INTERNAL_H__
+#define MEM_POOL_INTERNAL_H__
+
+#define TX_BUF_SIZE 4u /**< TX buffer size in bytes. */
+#define RX_BUF_SIZE 32u /**< RX buffer size in bytes. */
+
+#define RX_BUF_QUEUE_SIZE 8u /**< RX buffer element size. */
+
+#endif // MEM_POOL_INTERNAL_H__
+
+/** @} */
f='#n181'>181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356