Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf[Getting st

https://datasheets.raspberrypi.com/pico/pico-datasheet.pdf[Raspberry Pi Pico Datasheet]:: An RP2040-based microcontroller board

https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf[Getting started with Raspberry Pi Pico]:: C/{cpp} development with Raspberry Pi Pico and other RP2040-based microcontroller boards
https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf[Getting started with Raspberry Pi Pico-series Microcontrollers]:: C/{cpp} development with Raspberry Pi Pico-series devices and other Raspberry Pi microcontroller-based boards

=== Raspberry Pi Pico 2 W

Expand Down
4 changes: 2 additions & 2 deletions jekyll-assets/_includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@
}

accept.addEventListener("click", function (e) {
document.cookie = "cookiebanner_accepted=1; max-age=" + 60 * 60 * 24 * 365 * 2;
document.cookie = "cookiebanner_accepted=1; path=/; max-age=" + 60 * 60 * 24 * 365 * 2;

if (typeof window.gtag !== "undefined") {
window.gtag("consent", "update", {
Expand All @@ -444,7 +444,7 @@
});

reject.addEventListener("click", function (e) {
document.cookie = "cookiebanner_accepted=0; max-age=" + 60 * 60 * 24 * 365 * 2;
document.cookie = "cookiebanner_accepted=0; path=/; max-age=" + 60 * 60 * 24 * 365 * 2;

cookiebanner.classList.add("__rptl-cookiebanner-hidden");
});
Expand Down