/*
 * Samsung HL-R5668W HD Television RS-232 Serial Interface Driver
 * Copyright (C) 2006 Eric Gumtow
 * 
 * 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 2
 * 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, write to the 
 *
 *  Free Software Foundation, Inc.
 *  51 Franklin Street, Fifth Floor
 *  Boston, MA 02110-1301, USA
 *
 * ejgumtow@yahoo.com
 * http://www.ejgumtow.com/
 */


#include "Samsung_HL-R5668W_driver.h"


int
main(void)
{
	int tv;

	tv = r5668w_open_tv("/dev/ttyS3");
	if (tv > 0) {
		r5668w_cmd(tv, PICTURE_SIZE, SIXTEEN_BY_NINE);
		r5668w_cmd(tv, PICTURE_SIZE, FOUR_BY_THREE);
		r5668w_close_tv(tv);
	}
	r5668w_print_dbg_stats();

	return 0;
}
