You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,12 @@ This is a record of the major changes between versions of the SparkFun Arduino A
5
5
6
6
Each log entry will use the version number of the release that contains the changes listed. Newest version at the top of the file (just below this line)
7
7
8
+
1.0.8
9
+
===================
10
+
- Wire library requestFrom address bug fix (previously required address to be set with 'beginTransmission')
11
+
- Correct variant definition for Artemis module (Serial mis-definition)
12
+
- Correct variant definition for Edge (Wire1 redefinition)
13
+
8
14
1.0.7 -
9
15
===================
10
16
- Rectified error in Artemis variant pin map (pad 46 was listed as available when it is in fact not)
//We default Serial to 22/23 but can be moved to any TX0/RX0 pin
90
-
Uart Serial(0, 23, 22); // Declares a Uart object called Serial using instance 0 of Apollo3 UART peripherals with RX on variant pin 23 and TX on pin 24 (note, you specify *pins* not Apollo3 pads. This uses the variant's pin map to determine the Apollo3 pad)
91
-
// Uart Serial1(1, 0, 1); // Declares a Uart object called Serial1 using instance 1 of Apollo3 UART peripherals with RX on pin 0 and TX on pin 1 (note, you specify *pins* not Apollo3 pads. This uses the variant's pin map to determine the Apollo3 pad)
90
+
Uart Serial(0, 49, 48); // Declares a Uart object called Serial using instance 0 of Apollo3 UART peripherals with RX on variant pin 49 and TX on pin 48 (note, in this variant the pins map directly to pad, so pin === pad when talking about the pure Artemis module)
92
91
93
92
// Pin aliasing using the const uint8_t approach
94
93
//
@@ -143,4 +142,4 @@ Uart Serial(0, 23, 22); // Declares a Uart object called Serial using instance 0
143
142
// AP3_ADC_TEMP_PAD, //34 - Not a real pad, ADC_TEMP
144
143
// AP3_ADC_DIV3_PAD, //35 - Not a real pad, ADC_DIV3
145
144
// AP3_ADC_VSS_PAD, //36 - Not a real pad, ADC_VSS
Uart Serial(0, 26, 25); // Declares a Uart object called Serial using instance 0 of Apollo3 UART peripherals with RX on variant pin 26 and TX on pin 25 (note, you specify *pins* not Apollo3 pads. This uses the variant's pin map to determine the Apollo3 pad)
62
+
Uart Serial1(1, 0, 1); // Declares a Uart object called Serial1 using instance 1 of Apollo3 UART peripherals with RX on pin 0 and TX on pin 1 (note, you specify *pins* not Apollo3 pads. This uses the variant's pin map to determine the Apollo3 pad)
0 commit comments