oremeq@3: /* oremeq@3: This file is part of CanFestival, a library implementing CanOpen Stack. oremeq@3: ____ _ _ _ oremeq@3: / ___| / \ | \ | | ___ _ __ ___ _ __ oremeq@3: | | / _ \ | \| |/ _ \| '_ \ / _ \ '_ \ oremeq@3: | |___ / ___ \| |\ | (_) | |_) | __/ | | | oremeq@3: \____/_/ \_\_| \_|\___/| .__/ \___|_| |_| oremeq@3: |_| oremeq@3: ____ _ oremeq@3: / ___|__ _ _ __ __ _ __| | __ _ oremeq@3: | | / _` | '_ \ / _` |/ _` |/ _` | oremeq@3: | |__| (_| | | | | (_| | (_| | (_| | oremeq@3: \____\__,_|_| |_|\__,_|\__,_|\__,_| oremeq@3: oremeq@3: canfestival@canopencanada.ca oremeq@3: /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ oremeq@3: oremeq@3: See COPYING file for copyrights details. oremeq@3: oremeq@3: This library is free software; you can redistribute it and/or oremeq@3: modify it under the terms of the GNU Lesser General Public oremeq@3: License as published by the Free Software Foundation; either oremeq@3: version 2.1 of the License, or (at your option) any later version. oremeq@3: oremeq@3: This library is distributed in the hope that it will be useful, oremeq@3: but WITHOUT ANY WARRANTY; without even the implied warranty of oremeq@3: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU oremeq@3: Lesser General Public License for more details. oremeq@3: oremeq@3: You should have received a copy of the GNU Lesser General Public oremeq@3: License along with this library; if not, write to the Free Software oremeq@3: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA oremeq@3: */ oremeq@3: oremeq@3: #if !defined(_NVRAM_IO_H_) oremeq@3: #define _NVRAM_IO_H_ oremeq@3: oremeq@3: oremeq@3: int nvram_open(void); oremeq@3: void nvram_close(void); oremeq@3: oremeq@3: char nvram_write_data(int type, int access_attr, void *data); oremeq@3: char nvram_read_data(int type, int access_attr, void *data); oremeq@3: oremeq@3: void nvram_write_regs(void); oremeq@3: void nvram_read_regs(void); oremeq@3: oremeq@3: #endif oremeq@3: