• Home
  • History
  • Annotate
Name
Date
Size
#Lines
LOC

..--

tests/18-Mar-2025-4929

.coveragercD18-Mar-2025101 97

.flake8D18-Mar-202530 32

README.mdD18-Mar-2025669 3824

pic32cxsgpinctrl.pyD18-Mar-20258.4 KiB289215

pic32pinctrl.pyD18-Mar-20258.3 KiB285213

requirements-dev.txtD18-Mar-202513 32

requirements-test.txtD18-Mar-202518 32

requirements.txtD18-Mar-202515 32

README.md

1# Microchip PIC32C/PIC32M scripts
2
3This folder contains `hal_microchip` scripts.
4
5## Dependencies
6
7Scripts require Python 3.7+ and the Python dependencies listed in
8`requirements.txt`. They can be installed by running:
9
10```
11pip install -r scripts/requirements.txt
12```
13
14## Lint
15
16Scripts should be formatted using `black` and linted using `flake8`.
17
18Such development tools can be installed using:
19
20```
21pip install -r scripts/requirements-dev.txt
22```
23
24## Tests
25
26Before running tests make sure to have testing dependencies installed. They
27can be installed by running:
28
29```
30pip install -r scripts/requirements-test.txt
31```
32
33Tests can be executed by running:
34
35```
36pytest
37```
38