/* * PD Buddy - USB Power Delivery for everyone * Copyright (C) 2017 Clayton G. Hobbs * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef PDB_POLICY_ENGINE_H #define PDB_POLICY_ENGINE_H #include #include /* * Events for the Policy Engine thread, used internally * * NOTE: If any more events are needed, make sure they don't overlap the ones * in include/pdb_pe.h! */ #define PDB_EVT_PE_RESET EVENT_MASK(0) #define PDB_EVT_PE_MSG_RX EVENT_MASK(1) #define PDB_EVT_PE_TX_DONE EVENT_MASK(2) #define PDB_EVT_PE_TX_ERR EVENT_MASK(3) #define PDB_EVT_PE_HARD_SENT EVENT_MASK(4) #define PDB_EVT_PE_I_OVRTEMP EVENT_MASK(5) #define PDB_EVT_PE_PPS_REQUEST EVENT_MASK(6) /* * Start the Policy Engine thread */ void pdb_pe_run(struct pdb_config *cfg); #endif /* PDB_POLICY_ENGINE_H */