summaryrefslogtreecommitdiffstats
path: root/watch-library/simulator/watch/watch.c
blob: 4e89f3d335d2d9ed1c5e30105a7ba0092dfcab06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "watch.h"

bool watch_is_buzzer_or_led_enabled(void) {
    return false;
}

bool watch_is_usb_enabled(void) {
    return true;
}

void watch_reset_to_bootloader(void) {
    // No bootloader in the simulator; nothing to do here
}