Skip to content

Commit 08b6615

Browse files
committed
docs: update FAQs section in quickstart guide
Refactor the FAQ section to use the FAQStructuredData component for better structured data representation. Added specific answers to common questions regarding firmware upload, antenna connections, power options, battery charging, and bootloader updates. Signed-off-by: Chiho Sin <chihosin@icloud.com>
1 parent 910942a commit 08b6615

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

docs/product/f2102/quickstart.mdx

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ More information can be found in the [Meshtastic documentation](https://meshtast
227227

228228
import FAQStructuredData from '../../../src/theme/DocFAQ';
229229

230-
export const faqs = [
230+
<FAQStructuredData faqs={[
231231
{
232232
question: "I can't upload firmware to the board, what should I do?",
233233
answer:
@@ -253,9 +253,24 @@ export const faqs = [
253253
answer:
254254
'You can find the bootloader project and instructions in the [FoBE Bootloader Repository](https://github.com/fobe-projects/fobe-nrf52-bootloader), please follow the instructions to update the bootloader.',
255255
},
256-
];
256+
]} />
257257

258-
<FAQStructuredData faqs={faqs} />
258+
## FAQs
259+
260+
### I can't upload firmware to the board, what should I do?
261+
You can try to click the Reset button twice quickly to enter the bootloader mode. If that doesn't work, please check your USB cable and connection.
262+
263+
### How do I connect the LoRa and GPS antennas?
264+
The LoRa antenna should be connected to the UF.L connector labeled "LoRa", and the GPS antenna should be connected to the UF.L connector labeled "GPS".
265+
266+
### How do I power the board?
267+
You can power the board via the USB-C connector or by connecting a single-cell Li-ion/Li-Po battery to the 2-pin MX1.25 battery input interface.
268+
269+
### How do I charge the battery?
270+
When the board is powered via the USB-C connector, the battery will be charged automatically. The charging indicator LED will light up during charging.
271+
272+
### How do I update the bootloader?
273+
You can find the bootloader project and instructions in the [FoBE Bootloader Repository](https://github.com/fobe-projects/fobe-nrf52-bootloader), please follow the instructions to update the bootloader.
259274

260275
## Resources
261276

src/theme/DocFAQ/index.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,6 @@ export default function FAQStructuredData(props) {
3131
type="application/ld+json"
3232
dangerouslySetInnerHTML={{ __html: JSON.stringify(faqStructuredData) }}
3333
/>
34-
35-
<h2>FAQs</h2>
36-
{faqStructuredData.mainEntity.map((faq) => (
37-
<React.Fragment key={faq.name}>
38-
<h3>{faq.name}</h3>
39-
{faq.acceptedAnswer.text}
40-
</React.Fragment>
41-
))}
4234
</>
4335
);
4436
}

0 commit comments

Comments
 (0)