Skip to content

Commit

Permalink
update README about supported python version
Browse files Browse the repository at this point in the history
  • Loading branch information
Haifeng Li committed Jul 8, 2024
1 parent 30bccd5 commit 4616ab0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Python module for user-friendly view freeRTOS-kernel objects in GDB

## Requirements

GDB must built with python 3.6+ support
GDB must built with python 2.7+ support

Check your GDB with command:

```bash
gdb -q -ex "python print('OK' if sys.version_info.major==3 and sys.version_info.minor>=6 else 'NOT SUPPORTED')" -ex "quit"
gdb -q -ex "python print('OK' if sys.version_info.major==2 and sys.version_info.minor>=7 else 'NOT SUPPORTED')" -ex "quit"
```

## Install
Expand Down Expand Up @@ -152,4 +152,4 @@ TIMER_ID NAME OVERFLOW PERIOD_IN_TICKS STATUS CALLBACK_FN
0x3 TIMER2 0 300 5 0x400d490c <vTimerCallback>
0x5 TIMER1 0 200 5 0x400d490c <vTimerCallback>
0x2 TIMER4 0 500 5 0x400d490c <vTimerCallback>
```
```

0 comments on commit 4616ab0

Please sign in to comment.