I don't think a 555 would be stable enough. JimB (post #10) reckons the frequency needs to be very stable.
That is what I had in mind.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I don't think a 555 would be stable enough. JimB (post #10) reckons the frequency needs to be very stable.
Good.I am going to do one with PIC micro with a small firmware to produce 150KHz.
******************************************************************************************
;
; OSC : OSC 12MHz
;
;******************************************************************************************
LIST P=PIC12F1840,ST=OFF,R=DEC
INCLUDE "P12F1840.inc"
__CONFIG _CONFIG1, _FOSC_HS & _WDTE_OFF & _PWRTE_OFF & _MCLRE_OFF & _CP_OFF & _CPD_OFF & _BOREN_OFF & _CLKOUTEN_OFF & _IESO_OFF & _FCMEN_OFF
__CONFIG _CONFIG2, _WRT_OFF & _PLLEN_OFF & _STVREN_OFF & _BORV_HI & _LVP_OFF
;*******************************************************************************
; Constants
;*******************************************************************************
RAM_START equ 0x20
;Cycle time = 1/3000000 = 0.33333333333 uS
;150 Khz cycle time = 6.66666666 uS
;*******************************************************************************
; Pin Assignments
;*******************************************************************************
;
; PIC signals
;
; I/O pin use
; RA0 Not used (Pin 7) (To pin 4 on programmer connection)
; RA1 Not used (Pin 6) (To pin 5 on programmer connection)
; RA2 Output (Pin 5)
; RA3 Not used (Pin 4) NOTE THIS PIN CAN ONLY BE USED AS AN INPUT.
; (This is VPP for programming This could be connected to pin 3 or 5 of the header to program the chip on header.)
; RA4 crystal (Pin 3)
; RA5 crystal (Pin 2)
; Define GENERAL PURPOSE RAM AREA (80 bytes maximum)
;*******************************************************************************
; File Register Variables
;*******************************************************************************
cblock RAM_START
endc
;
;*******************************************************************************
;*******************************************************************************
; Define Macro Takes 2 uS
;*******************************************************************************
SELBANK MACRO #BANK_NO
MOVLW #BANK_NO ;1 cycle - 1 uS
MOVWF BSR ;1 cycle - 1 uS
ENDM
; *****************************
ORG 0h
GOTO START
ORG 4h
GOTO START
START
; *****************************
; Initialized Segment
; *****************************
; Initialise OSC (12MHz, )
BCF INTCON,GIE
; Initialise I/O port
SELBANK 1 ; SET BANK1
MOVLW B'11111001' ; Bits 1, 2 output Bit 0, 3, 4, 5 input.
MOVWF TRISA
SELBANK 0 ; SET BANK1
Loop:
MOVLW B'11111101'
MOVWF PORTA
NOP
NOP
NOP
NOP
NOP
NOP
NOP
NOP
MOVLW B'11111011'
MOVWF PORTA
NOP
NOP
NOP
NOP
NOP
NOP
GOTO Loop ;(2 cycles)
end
I do have this item.on hand. even I have a working set .How about **broken link removed** sold on FleaBay
Nonsense, MVSSomehow I have not been into software and I don't suppose to do that at my age of 71+.
yes i am a man of those days.Nonsense, MVS
spec
On a serious note MVS, from your ETO posts it is quite clear that you would have no problem doing programing- but I suspect that you were being jocular.yes i am a man of those days.
I shall agree for the nonsense comment, LoL
Spec,On a serious note MVS, from your ETO posts it is quite clear that you would have no problem doing programing- but I suspect that you were being jocular.spec
;******************************************************************************************
; Version for PIC12F675
; OSC : OSC 12MHz
;
;******************************************************************************************
list p=12f675
errorlevel -302
include "p12f675.inc"
;*******************************************************************************
; Configuration Bits
;*******************************************************************************
__CONFIG _CPD_OFF & _CP_OFF & _BODEN_ON & _MCLRE_OFF & _PWRTE_ON & _WDT_OFF & _HS_OSC & _EXTRC_OSC_NOCLKOUT
;*******************************************************************************
; Constants
;*******************************************************************************
RAM_START equ 0x20
;Cycle time = 1/3000000 = 0.33333333333 uS
;150 Khz cycle time = 6.66666666 uS
;*******************************************************************************
; Pin Assignments
;*******************************************************************************
;
; PIC signals
;
; GPIO bit use
; 0 Not used (Pin 7) (To pin 4 on programmer connection)
; 1 Not used (Pin 6) (To pin 5 on programmer connection)
; 2 Output (Pin 5)
; 3 Not used (Pin 4) NOTE THIS PIN CAN ONLY BE USED AS AN INPUT.
; (This is VPP for programming This could be connected to pin 3 or 5 of the header to program the chip on header.)
; 4 crystal (Pin 3)
; 5 crystal (Pin 2)
;*******************************************************************************
ORG 0h
GOTO START
ORG 4h
GOTO START
START
; *****************************
; Initialized Segment
; *****************************
; Initialise OSC (12MHz, )
BCF INTCON,GIE
; Initialise I/O port
bsf STATUS,RP0 ; bank 1
MOVLW B'11111001' ; Bits 1, 2 output Bit 0, 3, 4, 5 input.
MOVWF TRISIO
bcf STATUS,RP0 ; bank 0
Loop:
MOVLW B'11111101'
MOVWF GPIO
NOP
NOP
NOP
NOP
NOP
NOP
NOP
NOP
MOVLW B'11111011'
MOVWF GPIO
NOP
NOP
NOP
NOP
NOP
NOP
GOTO Loop ;(2 cycles)
end