Skip to content

Commit 79a350b

Browse files
authored
Fixing broken links and folder names (#171)
1 parent 2474c09 commit 79a350b

File tree

15 files changed

+9
-14
lines changed

15 files changed

+9
-14
lines changed

devices/Bmm150/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Configuration.SetPinFunction(22, DeviceFunction.I2C1_CLOCK);
2121

2222
For other devices like STM32, please make sure you're using the preset pins for the I2C bus you want to use.
2323

24-
You can find an example in the [sample](./samples/Bmm150.sample.cs) directory. Usage is straight forward including the possibility to have a calibration.
24+
You can find an example in the [sample](./samples/Program.cs) directory. Usage is straight forward including the possibility to have a calibration.
2525

2626
```csharp
2727
// The I2C pins 21 and 22 in the sample below are ESP32 specific and may differ from other platforms.
File renamed without changes.

devices/Mcp25xxx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mcp25xxx device family - CAN bus
22

3-
**This binding is currently not finished. Please consider contributing to help us finish it. In the meantime consider using [SocketCan](../SocketCan/README.md)**
3+
**This binding is currently not finished. Please consider contributing to help us finish it.**
44

55
The MCP25XXX is a stand-alone CAN controller and includes features like faster throughput, databyte filtering, and support for time-triggered protocols.
66

devices/Pn5180/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ Application note on how to operate PN5180 without a [library](https://www.nxp.co
1010

1111
## Board
1212

13-
You will find different implementation of this board. All boards should have full SPI pins plus the reset and busy ones and additionnaly 5V and or 3.3V plus ground. This pictures shows an example of one of the implementation connected with a [FT4222](../FT4222/README.md) chipset to provide the necessary GPIO and SPI features:
14-
15-
![PN5180](./samples/pn8150_ft4222.png)
13+
You will find different implementation of this board. All boards should have full SPI pins plus the reset and busy ones and additionally 5V and or 3.3V plus ground.
1614

1715
## Usage
1816

@@ -30,7 +28,7 @@ Configuration.SetPinFunction(23, DeviceFunction.SPI1_CLOCK);
3028

3129
For other devices like STM32, please make sure you're using the preset pins for the SPI bus you want to use. The chip select can as well be pre setup.
3230

33-
You will find a full example in the [samples directory](./samples/Pn5180sample.cs). This example covers the usage of most of the public functions and properties. This example shows as well how to use [Ultralight cards](../Card/Ultralight).
31+
You will find a full example in the [samples directory](./samples/Program.cs). This example covers the usage of most of the public functions and properties. This example shows as well how to use [Ultralight cards](../Card/Ultralight).
3432

3533
PN5180 is operated thru SPI and GPIO. GPIO is used to control the SPI behavior as the PN5180 is using SPI in specific way. This does then require to manually manage the pin selection for SPI. And another pin called pin busy is used to understand when the PN5180 is available to receive and send information.
3634

@@ -280,7 +278,7 @@ else
280278
}
281279
```
282280

283-
The [example](./samples/Pn5180sample.cs) contains as well an implementation to fully dump the content of other cards.
281+
The [example](./samples/Program.cs) contains as well an implementation to fully dump the content of other cards.
284282

285283
## Current implementation
286284

File renamed without changes.

0 commit comments

Comments
 (0)