Skip to content

Commit

Permalink
add: font configration feature
Browse files Browse the repository at this point in the history
feat: preset for nRF70 series radio test
feat: preset for nRF91 series SLM(Serial LTE Mode)
feat: Enable/Disable the direction and timestamp
feat: new configuration window layout
fix: Storing previous preset with new loaded preset file issue
fix: Wrong Interval time calculation issue
  • Loading branch information
olleheugene committed Aug 3, 2023
1 parent bd1e809 commit 4b5976d
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 28 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ The providing preset items are fit for the nRF91 series, and the nRF70 Series bu

Please find below the supported items.

- Providing Preset lists for the nRF70 Series RF test and the SLM application of the nRF91 series.
- Supports import and export preset list
- You can change the AT command of each by typing on the field.
- Automatic saving of the changed AT commands
- Supports embedded editor for editing the Preset List
- Supports sequential tests by selecting each command item.
- Supports changing the UI color.
- Default provide presets are nRF70 Series RF test and the SLM(Serial LTE Modem) for the nRF91 series
- Supports import, export, editing presets
- Supports automatic storing the edited preset in field
- Selectable Light / Dark theme
- Supports bash command in tool
- Supports to set different execution times for each command.
- Supports font configuration for serial terminal

Features don't yet support
- Sending TAB key directly in Serial widget.
Expand Down
Binary file modified nrf_atcmder/nrf_atcmder.exe
Binary file not shown.
32 changes: 25 additions & 7 deletions nrf_atcmder/nrf_atcommand_settings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
color = 0

[Font]
fontsize = 3
fontsize = 2
fontname = Consolas
fontstyle = 0
fontstyle = 1

[ToolConfig]
custombuttonname = Reset DK
custombuttontooltip = Executes Shell command (nrfjprog --reset)
custombuttontooltip = reset the DK by nrfjprog command
custombuttoncommand = nrfjprog --reset
defaultpresetname = presets_nrf70.prs
defaultinterval = 500
direction = False
timestamp = False
timestamp = 0
direction = 0
defaultinterval = 1000

[SerialPort]
comport = COM47
Expand All @@ -22,7 +22,25 @@ bytesize = 1
parity = 0
stopbit = 0
flowcontrol = 0
crmode = 1
crlr_mode = 0
mode = 1

[IntervalTime]
1 = 500
2 = 500
3 = 500
4 = 500
5 = 500
6 = 500
7 = 500
8 = 500
9 = 500
10 = 500
11 = 500
12 = 500
13 = 500
14 = 500
15 = 500
commoninterval = 1000


17 changes: 17 additions & 0 deletions nrf_atcmder/presets_nrf70.prs
Original file line number Diff line number Diff line change
Expand Up @@ -201,3 +201,20 @@
13 =
14 =
15 =

[WiFi_FICR_Commands]
1 = # Read OTP parameters
2 = wifi_radio_ficr_prog otp_read_params
3 = # Read OTP state
4 = wifi_radio_ficr_prog otp_get_status
5 = # Write OTP Command
6 = wifi_radio_ficr_prog otp_write_params
7 =
8 =
9 =
10 =
11 =
12 =
13 =
14 =
15 =
28 changes: 14 additions & 14 deletions nrf_atcmder/presets_nrf91.prs
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[DEFAULT_1]
1 = log
2 = \t
3 = AT%%XMONITOR
4 = AT%%CONEVAL
5 = AT+CGMI
6 = AT+CGMM
7 = AT+CGMR
8 = AT+CGSN=1
9 = AT%%ICCID
10 = AT+CRSM=176,28423
11 = AT%%CIMI
12 = AT+CNUM
13 = AT+CGDCONT?
14 = AT+CGCONTRDP=0
15 = AT%%XBANDLOCK=1,"00100"
2 = AT%%XMONITOR
3 = AT%%CONEVAL
4 = AT+CGMI
5 = AT+CGMM
6 = AT+CGMR
7 = AT+CGSN=1
8 = AT%%ICCID
9 = AT+CRSM=176,28423
10 = AT%%CIMI
11 = AT+CNUM
12 = AT+CGDCONT?
13 = AT+CGCONTRDP=0
14 = AT%%XBANDLOCK=1,"00100"
15 =

[DEFAULT_2]
1 = AT%%XCBAND
Expand Down

0 comments on commit 4b5976d

Please sign in to comment.