Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

Considering buying Oshonsoft suite-Is it any good?

djsb

New Member
Hi,
I've just joined this forum specifically as it has an Oshonsoft sub forum. I've been looking at the Oshonsoft Simulator and basic compiler for a while. Now that I've found this forum, I will have a good read of the posts and install the PIC16 evaluation software.
I mainly use PIC16 and the CCS C compiler, and also Arduino MCU's. I have some experience of PIC assembly language. Oshonsoft seems to be good value at around £60 for the full suite. How does it compare to something like Great Cow Basic. Can assembly language produced by the Oshonsoft basic compiler be used with the Microchip assembler. Is the IDE, simulator and compiler stable? Is the support good and are updates fairly regular? Sorry for all the questions. Just doing some basic research before I spend my money. Thanks.
 
Hello; I use it as a hobby and for educational purposes.
For professional use, use C.
It works reasonably well and has several updates a year.
I don't know of other platforms that are similar to compare it with.
I'm sorry I can't help you with more information.
 
Last edited:
There are a few people who are enthused by it, but it has been almost 60 years since I have written a BASIC program. I'm probably the wrong person to opine on this subject, being one of the bare metal types.
 
Look at Swordfish Basic. It's a powerful compiled basic similar to Visual Basic. It works with most PIC18F- series micros and is kept up-to-date by tumbleweed .

The "special edition" free trial version has very generous limits to the point that many users never feel the need to upgrade to the paid version.
 
I've used the Oshonsoft IDE for many years. It is fine for most simple projects. Of course, one's programming skills will determine how well you can manipulate the PIC code.
I've also converted some Oshonsoft code to GCB, not much different overall. Some differences with built in routines, but manageable. I find GCB is a bit more compact in final code size. However, I stick to the Oshonsoft due to the IDE/Simulator features. It is easier to debug code with a visible PIC pinout diagram and watching the output pins or toggling an input pin. Simulator has a few minor issues, so watch carefully for interrupt routines or UART functions.
 
Hi,
I've just joined this forum specifically as it has an Oshonsoft sub forum. I've been looking at the Oshonsoft Simulator and basic compiler for a while. Now that I've found this forum, I will have a good read of the posts and install the PIC16 evaluation software.
I mainly use PIC16 and the CCS C compiler, and also Arduino MCU's. I have some experience of PIC assembly language. Oshonsoft seems to be good value at around £60 for the full suite. How does it compare to something like Great Cow Basic. Can assembly language produced by the Oshonsoft basic compiler be used with the Microchip assembler. Is the IDE, simulator and compiler stable? Is the support good and are updates fairly regular? Sorry for all the questions. Just doing some basic research before I spend my money. Thanks.
If you're already familiar with C and C++, then why not just use MPLAB and the XC series compilers?, faster than using basic, many more users of it, almost all examples and application notes use it, and it's free!.
 
Hi,
I've just joined this forum specifically as it has an Oshonsoft sub forum. I've been looking at the Oshonsoft Simulator and basic compiler for a while. Now that I've found this forum, I will have a good read of the posts and install the PIC16 evaluation software.
I mainly use PIC16 and the CCS C compiler, and also Arduino MCU's. I have some experience of PIC assembly language. Oshonsoft seems to be good value at around £60 for the full suite. How does it compare to something like Great Cow Basic. Can assembly language produced by the Oshonsoft basic compiler be used with the Microchip assembler. Is the IDE, simulator and compiler stable? Is the support good and are updates fairly regular? Sorry for all the questions. Just doing some basic research before I spend my money. Thanks.
Hi D,
I use the Oshonsoft suite, and for me it's great, as I can only use BASIC. I'm not sure if it will work with other program languages?
If you are capable of learning 'C' I would learn it.
I gather that MPLAB is worth looking into.
If you're just starting in programming look at both, and try to compare them. You can use the Oshonsoft suite free for 'I think' 30 goes. Get an example program, and watch the Simulator run through it, showing you which line you're on while also showing the variables changing and with microcontroller view whatch the pins change.
If you can't find an example program, I can post one for you.
Cheers, C.
 
The choice depends on your specific requirements. For students and hobbyists, Great Cow is of course a better choice. Because it is open-source.
Hi T,
I just looked at Great cow, and it does look good, but I'm stuck in time so I'll stay with Oshonsoft.
Does GC have a simulator? I rely on the Osh one.
C
 
I've just bought the IDE suite, so I can try out the simulator. Has anyone got a simple LED blink program for either a PIC16F819 or PIC16F1847 (8 MHZ clock) that they can share to get me started? Thanks
 
I deduce that you want to test it in reality, I don't have the pic to do the real test but it will be very similar to this:

'******************************************************************************
'Example_01
'Example of flashing of a led connected to pin 0 of the PORTB (PORTB.0 = RB0).
'2024/07/20, Pic Basic Compiler v9.56 (PSI), Pic16F819
'******************************************************************************
'Fuse configuration
#define CONFIG = 0x2F50
'Clock 8Mhz
Define CLOCK_FREQUENCY = 8
'Define SIMULATION_WAITMS_VALUE = 1 'Activate for simulation
'-------------------------------------------------------------------
main:
'Clock settings internal 8 Mhz
OSCCON.IRCF0 = 1
OSCCON.IRCF1 = 1
OSCCON.IRCF2 = 1
'-----------------------------------------
'Pin configuration
AllDigital 'All pin as como I/O
ConfigPin PORTA = Output
ConfigPin PORTB = Output
'-----------------------------------------
Symbol Led = PORTB.0 'Or RB0 Assign name to the pin.

'Infinite Loop
While True

Led = 1 'PORTB.0 = 1 or RB0 =1 (pin)
WaitMs 500 'Pause 500 mSec.
Led = 0 'PORTB.0 = 0 or RB0 = 0 (pin)
WaitMs 500 'Pause 500 mSec.

Wend
End
 
Last edited:
Thanks for your reply and example code.
Yes, for testing on real hardware. I mainly use PIC16F819, PIC16F1827 or PIC16F1847. I also have a load of PIC16F628A lying around unused I can use as well. My main motivation for buying the Oshonsoft software is that I want to learn how to use an old Philips SAA1057 PLL synthesizer chip. I've found some Oshonsoft basic code for this chip that uses a PIC16F628A. There is virtually NO code for this chip in C anywhere. Basic is simple enough to get an idea of how the chip is programmed. I'll start a new topic for that tomorrow.
 
Thanks for your reply and example code.
Yes, for testing on real hardware. I mainly use PIC16F819, PIC16F1827 or PIC16F1847. I also have a load of PIC16F628A lying around unused I can use as well. My main motivation for buying the Oshonsoft software is that I want to learn how to use an old Philips SAA1057 PLL synthesizer chip. I've found some Oshonsoft basic code for this chip that uses a PIC16F628A. There is virtually NO code for this chip in C anywhere. Basic is simple enough to get an idea of how the chip is programmed. I'll start a new topic for that tomorrow.

It's dead simple to alter code from BASIC to C, so no motivation in that regard.
 

Latest threads

New Articles From Microcontroller Tips

Back
Top