Standardise start/end comment tags (to our internal format) (#20)

This commit is contained in:
Andrew Scheller
2021-01-28 16:05:03 +00:00
committed by Graham Sanderson
parent 58f46b2526
commit 90d785bb5b
9 changed files with 23 additions and 23 deletions

View File

@@ -29,7 +29,7 @@ int main() {
stdio_init_all();
printf("Hello, multicore!\n");
///tag::setup_multicore[]
/// \tag::setup_multicore[]
multicore_launch_core1(core1_entry);
@@ -44,5 +44,5 @@ int main() {
printf("It's all gone well on core 0!");
}
///end::setup_multicore[]
}
/// \end::setup_multicore[]
}

View File

@@ -9,7 +9,7 @@
#include "pico/multicore.h"
#include "hardware/irq.h"
///tag::multicore_fifo_irqs[]
/// \tag::multicore_fifo_irqs[]
#define FLAG_VALUE1 123
#define FLAG_VALUE2 321
@@ -73,4 +73,4 @@ int main() {
tight_loop_contents();
}
///end::multicore_fifo_irqs[]
/// \end::multicore_fifo_irqs[]

View File

@@ -8,7 +8,7 @@
#include "pico/stdlib.h"
#include "pico/multicore.h"
///tag::multicore_dispatch[]
/// \tag::multicore_dispatch[]
#define FLAG_VALUE 123
@@ -80,4 +80,4 @@ int main() {
}
///end::multicore_dispatch[]
/// \end::multicore_dispatch[]