OpenCores
URL https://opencores.org/ocsvn/s6soc/s6soc/trunk

Subversion Repositories s6soc

[/] [s6soc/] [trunk/] [sw/] [dev/] [doorbell.c] - Rev 29

Go to most recent revision | Compare with Previous | Blame | View Log

////////////////////////////////////////////////////////////////////////////////
//
// Filename: 	doorbell.c
//
// Project:	CMod S6 System on a Chip, ZipCPU demonstration project
//
// Purpose:	To test the PWM device by playing a doorbell sound every ten
//		seconds.
//
// Creator:	Dan Gisselquist, Ph.D.
//		Gisselquist Technology, LLC
//
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
//
// This program is free software (firmware): 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 MERCHANTIBILITY 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.  (It's in the $(ROOT)/doc directory, run make with no
// target there if the PDF file isn't present.)  If not, see
// <http://www.gnu.org/licenses/> for a copy.
//
// License:	GPL, v3, as defined and found on www.gnu.org,
//		http://www.gnu.org/licenses/gpl.html
//
//
////////////////////////////////////////////////////////////////////////////////
//
//
#include "asmstartup.h"
#include "board.h"
 
#include "samples.c"
 
const char	msg[] = "Doorbell!\r\n\r\n";
 
void entry(void) {
	register IOSPACE	*sys = (IOSPACE *)0x0100;
 
	sys->io_timb = 0;
	sys->io_pic = 0x07fffffff; // Acknowledge and turn off all interrupts
 
	sys->io_spio = 0x0f4;
	sys->io_pwm_audio = 0x0110000;
	while(1) {
		int	seconds = 0, pic;
		const int	*ptr;
		const char	*mptr = msg;
		sys->io_tima = TM_ONE_SECOND | TM_REPEAT; // Ticks per second, 80M
 
		sys->io_spio = 0x0f0;
		ptr = sound_data;
		sys->io_pwm_audio = 0x0310000;
		if (ptr == sound_data)
			sys->io_spio = 0x0f1;
		while(ptr < &sound_data[NSAMPLE_WORDS]) {
			sys->io_spio = 0x022;
			do {
				pic = sys->io_pic;
				if (pic & INT_TIMA)
					seconds++;
				if ((pic & INT_UARTTX)&&(*mptr))
					sys->io_uart = *mptr++;
				sys->io_pic = (pic & 0x07fff);
			} while((pic & INT_AUDIO)==0);
			sys->io_pwm_audio = (*ptr >> 16)&0x0ffff;
			// Now, turn off the audio interrupt since it doesn't
			// reset itself ...
			sys->io_pic = INT_AUDIO;
 
			do {
				pic = sys->io_pic;
				if (pic & INT_TIMA)
					seconds++;
				if ((pic & INT_UARTTX)&&(*mptr))
					sys->io_uart = *mptr++;
				sys->io_pic = (pic & 0x07fff);
			} while((pic & INT_AUDIO)==0);
			sys->io_pwm_audio = (*ptr++) & 0x0ffff;
 
			// and turn off the audio interrupt again ...
			sys->io_pic = INT_AUDIO;
		} if (ptr >= &sound_data[NSAMPLE_WORDS])
			sys->io_spio = 0x044;
 
		sys->io_spio = 0x088;
		sys->io_pwm_audio = 0;
		while(seconds < 10) {
			pic = sys->io_pic;
			if (pic & INT_TIMA)
				seconds++;
			sys->io_pic = (pic & 0x07fff);
		}
		sys->io_spio = 0x0ff;
	}
}
 
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.