mirror of
https://github.com/grymoire/i2c_puppet-Linux.git
synced 2024-12-27 05:48:21 +01:00
63 lines
1.1 KiB
C
63 lines
1.1 KiB
C
|
#include <pico/stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <tusb.h>
|
||
|
|
||
|
#include "backlight.h"
|
||
|
#include "debug.h"
|
||
|
#include "gpioexp.h"
|
||
|
#include "interrupt.h"
|
||
|
#include "keyboard.h"
|
||
|
#include "puppet_i2c.h"
|
||
|
#include "reg.h"
|
||
|
#include "touchpad.h"
|
||
|
#include "usb.h"
|
||
|
|
||
|
// since the SDK doesn't support per-GPIO irq, we use this global irq and forward it
|
||
|
static void gpio_irq(uint gpio, uint32_t events)
|
||
|
{
|
||
|
// printf("%s: gpio %d, events 0x%02X\r\n", __func__, gpio, events);
|
||
|
touchpad_gpio_irq(gpio, events);
|
||
|
gpioexp_gpio_irq(gpio, events);
|
||
|
}
|
||
|
|
||
|
// TODO: Microphone
|
||
|
int main(void)
|
||
|
{
|
||
|
// The here order is important because it determines callback call order
|
||
|
|
||
|
usb_init();
|
||
|
|
||
|
#ifndef NDEBUG
|
||
|
debug_init();
|
||
|
#endif
|
||
|
|
||
|
reg_init();
|
||
|
|
||
|
backlight_init();
|
||
|
|
||
|
gpioexp_init();
|
||
|
|
||
|
keyboard_init();
|
||
|
|
||
|
touchpad_init();
|
||
|
|
||
|
interrupt_init();
|
||
|
|
||
|
puppet_i2c_init();
|
||
|
|
||
|
// For now, the `gpio` param is ignored and all enabled GPIOs generate the irq
|
||
|
gpio_set_irq_enabled_with_callback(0xFF, 0, true, &gpio_irq);
|
||
|
|
||
|
#ifndef NDEBUG
|
||
|
printf("Starting main loop\r\n");
|
||
|
#endif
|
||
|
|
||
|
while (true) {
|
||
|
keyboard_task();
|
||
|
|
||
|
// tud_task();
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|