テスト用です。

Dependencies:   mbed

Committer:
jksoft
Date:
Tue Oct 11 11:09:42 2016 +0000
Revision:
0:8468a4403fea
SB??ver;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:8468a4403fea 1 /* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
jksoft 0:8468a4403fea 2 *
jksoft 0:8468a4403fea 3 * The information contained herein is property of Nordic Semiconductor ASA.
jksoft 0:8468a4403fea 4 * Terms and conditions of usage are described in detail in NORDIC
jksoft 0:8468a4403fea 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
jksoft 0:8468a4403fea 6 *
jksoft 0:8468a4403fea 7 * Licensees are granted free, non-transferable use of the information. NO
jksoft 0:8468a4403fea 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
jksoft 0:8468a4403fea 9 * the file.
jksoft 0:8468a4403fea 10 *
jksoft 0:8468a4403fea 11 */
jksoft 0:8468a4403fea 12
jksoft 0:8468a4403fea 13 #include <string.h>
jksoft 0:8468a4403fea 14 #include <stdint.h>
jksoft 0:8468a4403fea 15 #include <stdbool.h>
jksoft 0:8468a4403fea 16 #include <nrf51.h>
jksoft 0:8468a4403fea 17 #include "ble_error_log.h"
jksoft 0:8468a4403fea 18 #include "app_util.h"
jksoft 0:8468a4403fea 19 #include "app_error.h"
jksoft 0:8468a4403fea 20 #include "nrf_gpio.h"
jksoft 0:8468a4403fea 21 #include "pstorage.h"
jksoft 0:8468a4403fea 22
jksoft 0:8468a4403fea 23
jksoft 0:8468a4403fea 24 // Made static to avoid the error_log to go on the stack.
jksoft 0:8468a4403fea 25 static ble_error_log_data_t m_ble_error_log; /**< . */
jksoft 0:8468a4403fea 26 //lint -esym(526,__Vectors)
jksoft 0:8468a4403fea 27 extern uint32_t * __Vectors; /**< The initialization vector holds the address to __initial_sp that will be used when fetching the stack. */
jksoft 0:8468a4403fea 28
jksoft 0:8468a4403fea 29 static void fetch_stack(ble_error_log_data_t * error_log)
jksoft 0:8468a4403fea 30 {
jksoft 0:8468a4403fea 31 // KTOWN: Temporarily removed 06022014
jksoft 0:8468a4403fea 32 /*
jksoft 0:8468a4403fea 33 uint32_t * p_stack;
jksoft 0:8468a4403fea 34 uint32_t * initial_sp;
jksoft 0:8468a4403fea 35 uint32_t length;
jksoft 0:8468a4403fea 36
jksoft 0:8468a4403fea 37 initial_sp = (uint32_t *) __Vectors;
jksoft 0:8468a4403fea 38 p_stack = (uint32_t *) GET_SP();
jksoft 0:8468a4403fea 39
jksoft 0:8468a4403fea 40 length = ((uint32_t) initial_sp) - ((uint32_t) p_stack);
jksoft 0:8468a4403fea 41 memcpy(error_log->stack_info,
jksoft 0:8468a4403fea 42 p_stack,
jksoft 0:8468a4403fea 43 (length > STACK_DUMP_LENGTH) ? STACK_DUMP_LENGTH : length);
jksoft 0:8468a4403fea 44 */
jksoft 0:8468a4403fea 45 }
jksoft 0:8468a4403fea 46
jksoft 0:8468a4403fea 47 uint32_t ble_error_log_write(uint32_t err_code, const uint8_t * p_message, uint16_t line_number)
jksoft 0:8468a4403fea 48 {
jksoft 0:8468a4403fea 49 m_ble_error_log.failure = true;
jksoft 0:8468a4403fea 50 m_ble_error_log.err_code = err_code;
jksoft 0:8468a4403fea 51 m_ble_error_log.line_number = line_number;
jksoft 0:8468a4403fea 52
jksoft 0:8468a4403fea 53 strncpy((char *)m_ble_error_log.message, (const char *)p_message, ERROR_MESSAGE_LENGTH - 1);
jksoft 0:8468a4403fea 54 m_ble_error_log.message[ERROR_MESSAGE_LENGTH - 1] = '\0';
jksoft 0:8468a4403fea 55
jksoft 0:8468a4403fea 56 fetch_stack(&m_ble_error_log);
jksoft 0:8468a4403fea 57
jksoft 0:8468a4403fea 58 // Write to flash removed, to be redone.
jksoft 0:8468a4403fea 59
jksoft 0:8468a4403fea 60 return NRF_SUCCESS;
jksoft 0:8468a4403fea 61 }