1
0
mirror of https://github.com/livingcomputermuseum/UniBone.git synced 2026-04-30 13:32:57 +00:00
Files
livingcomputermuseum.UniBone/10.02_devices/2_src/demo_io.hpp

72 lines
2.3 KiB
C++

/* demo_io.hpp: sample UNIBUS controller with Linux GPIO logic
Copyright (c) 2018, Joerg Hoppe
j_hoppe@t-online.de, www.retrocmp.com
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
JOERG HOPPE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12-nov-2018 JH entered beta phase
*/
#ifndef _DEMO_IO_HPP_
#define _DEMO_IO_HPP_
#include <fstream>
using namespace std;
#include "utils.hpp"
#include "unibusdevice.hpp"
class demo_io_c: public unibusdevice_c {
private:
unibusdevice_register_t *switch_reg;
unibusdevice_register_t *display_reg;
// file handles for GPIO pins
fstream gpio_inputs[5]; // 4 switches, 1 button
fstream gpio_outputs[4]; // 4 LEDs
void gpio_open(fstream& value_stream, bool is_input, unsigned gpio_number);
unsigned gpio_get_input(unsigned input_index);
void gpio_set_output(unsigned output_index, unsigned value);
public:
demo_io_c();
~demo_io_c();
bool on_param_changed(parameter_c *param) override; // must implement
parameter_bool_c switch_feedback = parameter_bool_c(this, "switch_feedback", "sf",/*readonly*/
false, "1 = hard wire Switches to LEDs, PDP-11 can not set LEDs");
// background worker function
void worker(unsigned instance) override;
// called by unibusadapter on emulated register access
void on_after_register_access(unibusdevice_register_t *device_reg, uint8_t unibus_control)
override;
void on_power_changed(void) override;
void on_init_changed(void) override;
};
#endif