Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for setting and reading alarm #4

Merged
merged 7 commits into from
Jun 4, 2020
Merged

Add support for setting and reading alarm #4

merged 7 commits into from
Jun 4, 2020

Commits on Jun 3, 2020

  1. Add support for setting and reading alarm

    struct tm out = {0};
    struct tm in = {0};
    
    out.tm_min = 30;
    out.tm_hour = 12;
    out.tm_mday = BM8563_ALARM_DISABLE;
    out.tm_wday = BM8563_ALARM_DISABLE;
    
    bm8563_ioctl(&bm, BM8563_ALARM_SET, &out);
    ...
    bm8563_ioctl(&bm, BM8563_ALARM_READ, &in);
    tuupola committed Jun 3, 2020
    Configuration menu
    Copy the full SHA
    3b4e1f6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    19fe9b9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    99ef96e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b8b1cc4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    eb28f5d View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2020

  1. Document changes

    tuupola committed Jun 4, 2020
    Configuration menu
    Copy the full SHA
    636ccf3 View commit details
    Browse the repository at this point in the history
  2. Improve wording

    tuupola committed Jun 4, 2020
    Configuration menu
    Copy the full SHA
    783c1b9 View commit details
    Browse the repository at this point in the history