Skip to content

Commit 6eba991

Browse files
Release 1.1.0
Added ISP1507-AL support.
1 parent 2b2d925 commit 6eba991

18 files changed

+186
-32
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Example of AT Command set for BLE
44
## Overview
55

66
The aim of this archive is to show an example of AT Command set for BLE.
7-
The project currently supports ISP1507-AX and ISP1807-LR modules.
7+
The project currently supports ISP1507-AX, ISP1507-AL and ISP1807-LR modules.
88
Visit https://www.insightsip.com/products/short-range-modules to know more about these modules.
99

1010
## Environment
@@ -16,8 +16,22 @@ Licenses can be requested at https://license.segger.com/Nordic.cgi
1616

1717
For more information regarding Segger Embedded Studio, please visit https://www.segger.com/products/development-tools/embedded-studio/
1818

19+
## Supported modules
20+
21+
The following modules are supported:
22+
23+
| Module | Needed Softdevice | Logical ports |
24+
| :-----------: | :-----------: | :-----------: |
25+
| ISP1507-AL | S112 | RX: P0_08, TX: P0_17, CTS: P0_03, RTS: P0_05, SEL: P0_11 |
26+
| ISP1507-AX | S132 | RX: P0_08, TX: P0_06, CTS: P0_07, RTS: P0_05, SEL: P0_04 |
27+
| ISP1807-LR | S140 | RX: P0_08, TX: P0_06, CTS: P0_07, RTS: P0_05, SEL: P0_04 |
28+
1929
## Changelog
2030

31+
### 2020-08-04, v1.1.0
32+
33+
Added support for ISP1507-AL.
34+
2135
### 2020-06-22, v1.0.0
2236

2337
Initial version.

src/apps/ble_at_manager.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/******************************************************************************
22
* @file ble_at_manager.c
33
* @author Insight SiP
4-
* @version V0.2.0
5-
* @date 13-03-2020
64
* @brief at commands for BLE
75
*
86
*

src/apps/ble_at_manager.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/******************************************************************************
22
* @file at_manager.h
33
* @author Insight SiP
4-
* @version V0.2.0
5-
* @date 13-03-2020
64
* @brief at commands for BLE
75
*
86
*
@@ -25,7 +23,7 @@
2523

2624
#include <stdint.h>
2725

28-
#define FW_REVISION "1.0.0"
26+
#define FW_REVISION "1.1.0"
2927
#define SER_PKT_FW_PORT_AT 0
3028

3129
typedef enum

src/apps/ble_manager.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/******************************************************************************
22
* @file ble_manager.c
33
* @author Insight SiP
4-
* @version V0.2.0
5-
* @date 13-03-2020
64
* @brief BLE manager
75
*
86
*

src/apps/ble_manager.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/******************************************************************************
22
* @file ble_manager.h
33
* @author Insight SiP
4-
* @version V0.2.0
5-
* @date 13-03-2020
64
* @brief BLE manager
75
*
86
*

src/apps/flash_manager.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/******************************************************************************
22
* @file flash_manager.c
33
* @author Insight SiP
4-
* @version V0.2.0
5-
* @date 13-03-2020
64
* @brief Flash manager
75
*
86
*

src/apps/flash_manager.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/******************************************************************************
22
* @file flash_manager.h
33
* @author Insight SiP
4-
* @version V0.2.0
5-
* @date 13-03-2020
64
* @brief Flash manager
75
*
86
*

src/apps/main.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/******************************************************************************
22
* @file main.c
33
* @author Insight SiP
4-
* @version V0.2.0
5-
* @date 13-03-2020
64
* @brief main file
75
*
86
*

src/apps/projects/config/sdk_config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5861,7 +5861,7 @@
58615861

58625862

58635863
#ifndef UART_LEGACY_SUPPORT
5864-
#define UART_LEGACY_SUPPORT 1
5864+
#define UART_LEGACY_SUPPORT 0
58655865
#endif
58665866

58675867
// <e> UART0_ENABLED - Enable UART0 instance
@@ -6577,7 +6577,7 @@
65776577
// <i> The total amount of flash memory that is used by FDS amounts to @ref FDS_VIRTUAL_PAGES * @ref FDS_VIRTUAL_PAGE_SIZE * 4 bytes.
65786578

65796579
#ifndef FDS_VIRTUAL_PAGES
6580-
#define FDS_VIRTUAL_PAGES 3
6580+
#define FDS_VIRTUAL_PAGES 2
65816581
#endif
65826582

65836583
// <o> FDS_VIRTUAL_PAGE_SIZE - The size of a virtual flash page.

src/apps/projects/ses/ble_at_cmd.emProject

Lines changed: 130 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)