Contiki-NG
Loading...
Searching...
No Matches
platform.c
1/*
2 * Copyright (c) 2026, RISE Research Institutes of Sweden AB
3 * All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8#include "contiki.h"
9#include "sys/process.h"
10#include "sys/etimer.h"
11#include "sys/clock.h"
12#include "sys/int-master.h"
13
14void
18
19void
23
24void
28
29void
31{
32 while(1) {
35 }
36}
37
38void
40{
41}
Event timer header file.
void platform_init_stage_three()
Final stage of platform driver initialisation.
Definition platform.c:165
void platform_init_stage_one(void)
Basic (Stage 1) platform driver initialisation.
Definition platform.c:113
void platform_idle()
The platform's idle/sleep function.
Definition platform.c:181
void platform_init_stage_two()
Stage 2 of platform driver initialisation.
Definition platform.c:122
void etimer_request_poll(void)
Make the event timer aware that the clock has changed.
Definition etimer.c:145
void platform_main_loop()
The platform's main loop, if provided.
Definition platform.c:124
process_num_events_t process_run(void)
Run the system once - call poll handlers and process one event.
Definition process.c:305
Header file for the Contiki process interface.